AdminbusTab.xaml 1005 B

12345678910111213141516
  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:abt="clr-namespace:Content.Client.Administration.UI.Tabs.AdminbusTab"
  6. Margin="4"
  7. MinSize="50 50">
  8. <GridContainer Columns="3">
  9. <Button Name="SpawnEntitiesButton" Text="{Loc 'sandbox-window-spawn-entities-button'}" />
  10. <Button Name="SpawnTilesButton" Text="{Loc 'sandbox-window-spawn-tiles-button'}" />
  11. <Button Name="SpawnDecalsButton" Text="{Loc 'sandbox-window-spawn-decals-button'}" />
  12. <Button Name="LoadGamePrototypeButton" Text="{Loc 'load-game-prototype'}"/>
  13. <cc:UICommandButton Name="LoadBlueprintsButton" Command="loadbp" Text="{Loc 'load-blueprints'}" WindowType="{x:Type abt:LoadBlueprintsWindow}"/>
  14. <cc:CommandButton Command="deleteewc Singularity" Name="DeleteSingulos" Text="{Loc 'delete-singularities'}"/>
  15. </GridContainer>
  16. </Control>