ShuttleConsoleWindow.xaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <controls:FancyWindow xmlns="https://spacestation14.io"
  2. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  3. xmlns:ui="clr-namespace:Content.Client.Shuttles.UI"
  4. Title="{Loc 'shuttle-console-window-title'}"
  5. SetSize="960 762"
  6. MinSize="960 762">
  7. <BoxContainer Orientation="Vertical">
  8. <!-- Top row mode buttons -->
  9. <BoxContainer Name="ModeButtons"
  10. Orientation="Horizontal"
  11. HorizontalAlignment="Stretch"
  12. MinSize="52 52"
  13. Margin="5">
  14. <Button Name="NavModeButton"
  15. ToggleMode="True"
  16. HorizontalExpand="True"
  17. VerticalExpand="True"
  18. Text="NAV"
  19. Margin="5"/>
  20. <Button Name="MapModeButton"
  21. ToggleMode="True"
  22. HorizontalExpand="True"
  23. VerticalExpand="True"
  24. Text="MAP"
  25. Margin="5"/>
  26. <Button Name="DockModeButton"
  27. ToggleMode="True"
  28. HorizontalExpand="True"
  29. VerticalExpand="True"
  30. Text="DOCK"
  31. Margin="5"/>
  32. </BoxContainer>
  33. <!-- Contents box -->
  34. <BoxContainer Name="Contents"
  35. HorizontalAlignment="Stretch"
  36. VerticalExpand="True"
  37. Margin="5">
  38. <ui:NavScreen Name="NavContainer" Visible="False"/>
  39. <ui:MapScreen Name="MapContainer" Visible="False"/>
  40. <ui:DockingScreen Name="DockContainer" Visible="False"/>
  41. </BoxContainer>
  42. </BoxContainer>
  43. </controls:FancyWindow>