SiliconLawMenu.xaml 1.2 KB

123456789101112131415161718192021222324252627
  1. <controls:FancyWindow xmlns="https://spacestation14.io"
  2. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  3. xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
  4. Title="{Loc 'laws-ui-menu-title'}"
  5. MinSize="200 100"
  6. SetSize="450 515">
  7. <BoxContainer Orientation="Vertical"
  8. HorizontalExpand="True"
  9. VerticalExpand="True">
  10. <PanelContainer VerticalExpand="True" Margin="10 10 10 10">
  11. <PanelContainer.PanelOverride>
  12. <gfx:StyleBoxFlat BackgroundColor="#1B1B1E"/>
  13. </PanelContainer.PanelOverride>
  14. <ScrollContainer
  15. HScrollEnabled="False"
  16. HorizontalExpand="True"
  17. VerticalExpand="True">
  18. <BoxContainer
  19. Name="LawDisplayContainer"
  20. Orientation="Vertical"
  21. VerticalExpand="True"
  22. Margin="10 10 10 0">
  23. </BoxContainer>
  24. </ScrollContainer>
  25. </PanelContainer>
  26. </BoxContainer>
  27. </controls:FancyWindow>