CargoShuttleMenu.xaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <controls:FancyWindow xmlns="https://spacestation14.io"
  2. xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
  3. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  4. SetSize="600 600"
  5. MinSize="600 600">
  6. <BoxContainer Orientation="Vertical">
  7. <BoxContainer Orientation="Horizontal">
  8. <Label Text="{Loc 'cargo-console-menu-account-name-label'}"
  9. StyleClasses="LabelKeyText" />
  10. <Label Name="AccountNameLabel"
  11. Text="{Loc 'cargo-console-menu-account-name-none-text'}" />
  12. </BoxContainer>
  13. <BoxContainer Orientation="Horizontal">
  14. <Label Text="{Loc 'cargo-console-menu-shuttle-name-label'}"
  15. StyleClasses="LabelKeyText" />
  16. <Label Name="ShuttleNameLabel"
  17. Text="{Loc 'cargo-console-menu-shuttle-name-none-text'}" />
  18. </BoxContainer>
  19. <BoxContainer Orientation="Horizontal">
  20. <Label Text="{Loc 'cargo-console-menu-shuttle-status-label'}"
  21. StyleClasses="LabelKeyText" />
  22. <Label Name="ShuttleStatusLabel"
  23. Text="{Loc 'cargo-console-menu-shuttle-status-away-text'}" />
  24. </BoxContainer>
  25. <Label Text="{Loc 'cargo-console-menu-orders-label'}" />
  26. <PanelContainer VerticalExpand="True"
  27. SizeFlagsStretchRatio="6">
  28. <PanelContainer.PanelOverride>
  29. <gfx:StyleBoxFlat BackgroundColor="#000000" />
  30. </PanelContainer.PanelOverride>
  31. <ScrollContainer VerticalExpand="True">
  32. <BoxContainer Name="Orders"
  33. Orientation="Vertical"
  34. StyleClasses="transparentItemList"
  35. VerticalExpand="True"/>
  36. </ScrollContainer>
  37. </PanelContainer>
  38. <TextureButton VerticalExpand="True" />
  39. </BoxContainer>
  40. </controls:FancyWindow>