CryostorageMenu.xaml 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. <controls:FancyWindow
  2. xmlns="https://spacestation14.io"
  3. xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
  4. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  5. xmlns:xNamespace="http://schemas.microsoft.com/winfx/2006/xaml"
  6. xmlns:style="clr-namespace:Content.Client.Stylesheets"
  7. Title="{Loc 'cryostorage-ui-window-title'}"
  8. MinSize="350 350"
  9. SetSize="450 400">
  10. <BoxContainer
  11. Orientation="Vertical"
  12. VerticalExpand="True"
  13. HorizontalExpand="True">
  14. <PanelContainer
  15. VerticalExpand="True"
  16. HorizontalExpand="True"
  17. Margin="15">
  18. <PanelContainer.PanelOverride>
  19. <graphics:StyleBoxFlat BackgroundColor="{xNamespace:Static style:StyleNano.PanelDark}" />
  20. </PanelContainer.PanelOverride>
  21. <ScrollContainer VerticalExpand="True" HorizontalExpand="True">
  22. <Control>
  23. <Label Text="{Loc 'cryostorage-ui-label-no-bodies'}" Name="EmptyLabel" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  24. <BoxContainer Name="EntriesContainer"
  25. Orientation="Vertical"
  26. Margin="10"
  27. VerticalExpand="True"
  28. HorizontalExpand="True"/>
  29. </Control>
  30. </ScrollContainer>
  31. </PanelContainer>
  32. </BoxContainer>
  33. </controls:FancyWindow>