18 lines
910 B
XML
18 lines
910 B
XML
<Control
|
|
xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
|
|
xmlns:at="clr-namespace:Content.Client.Administration.UI.Tabs.AdminTab"
|
|
Margin="4"
|
|
MinSize="50 50">
|
|
<BoxContainer Orientation="Vertical">
|
|
<GridContainer Columns="4">
|
|
<cc:UICommandButton Command="kick" Text="{Loc Kick}" WindowType="{x:Type at:KickWindow}" />
|
|
<cc:UICommandButton Command="ban" Text="{Loc Ban}" WindowType="{x:Type at:BanWindow}" />
|
|
<cc:CommandButton Command="aghost" Text="{Loc Admin Ghost}" />
|
|
<cc:UICommandButton Command="tpto" Text="{Loc Teleport}" WindowType="{x:Type at:TeleportWindow}" />
|
|
<cc:CommandButton Command="permissions" Text="{Loc Permissions Panel}" />
|
|
</GridContainer>
|
|
</BoxContainer>
|
|
</Control>
|