AdminTab.xaml 1.4 KB

123456789101112131415161718192021
  1. <Control
  2. xmlns="https://spacestation14.io"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
  5. xmlns:at="clr-namespace:Content.Client.Administration.UI.Tabs.AdminTab"
  6. Margin="4"
  7. MinSize="50 50">
  8. <BoxContainer Orientation="Vertical">
  9. <GridContainer Columns="3">
  10. <cc:UICommandButton Command="kick" Text="{Loc admin-player-actions-window-title}" WindowType="{x:Type at:PlayerActionsWindow}" />
  11. <cc:CommandButton Command="banpanel" Text="{Loc admin-player-actions-window-ban}" />
  12. <cc:CommandButton Command="aghost" Text="{Loc admin-player-actions-window-admin-ghost}" />
  13. <cc:UICommandButton Command="tpto" Text="{Loc admin-player-actions-window-teleport}" WindowType="{x:Type at:TeleportWindow}" />
  14. <cc:CommandButton Command="permissions" Text="{Loc admin-player-actions-window-permissions}" />
  15. <cc:CommandButton Command="announceui" Text="{Loc admin-player-actions-window-announce}"/>
  16. <cc:UICommandButton Command="callshuttle" Text="{Loc admin-player-actions-window-shuttle}" WindowType="{x:Type at:AdminShuttleWindow}"/>
  17. <cc:CommandButton Command="adminlogs" Text="{Loc admin-player-actions-window-admin-logs}"/>
  18. <cc:CommandButton Command="faxui" Text="{Loc admin-player-actions-window-admin-fax}"/>
  19. </GridContainer>
  20. </BoxContainer>
  21. </Control>