Fix unused and improperly named xaml namespaces (#4172)

This commit is contained in:
DrSmugleaf
2021-06-10 23:09:07 +02:00
committed by GitHub
parent ff1a2d97ea
commit f9acdbe5cc
14 changed files with 49 additions and 71 deletions

View File

@@ -1,13 +1,12 @@
<Control
xmlns="https://spacestation14.io"
xmlns:amc="clr-namespace:Content.Client.UserInterface.AdminMenu.CustomControls"
xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls"
xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
Margin="4"
MinSize="50 50">
<GridContainer
Columns="4">
<customControls:CommandButton Command="startround" Text="{Loc Start Round}" />
<customControls:CommandButton Command="endround" Text="{Loc End Round}" />
<customControls:CommandButton Command="restartround" Text="{Loc Restart Round}" />
<cc:CommandButton Command="startround" Text="{Loc Start Round}" />
<cc:CommandButton Command="endround" Text="{Loc End Round}" />
<cc:CommandButton Command="restartround" Text="{Loc Restart Round}" />
</GridContainer>
</Control>