ThiefBackpackSet.xaml 1.1 KB

1234567891011121314151617181920212223
  1. <Control 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. <!-- Name and button -->
  5. <PanelContainer Margin="5 5 0 5">
  6. <PanelContainer.PanelOverride>
  7. <gfx:StyleBoxFlat BackgroundColor="#18211b" />
  8. </PanelContainer.PanelOverride>
  9. <BoxContainer Orientation="Vertical" HorizontalExpand="True">
  10. <GridContainer Margin="5" Columns="2" MinSize="600 0">
  11. <Label Name="SetName" Text="Set" StyleClasses="StatusFieldTitle"></Label>
  12. <Button Margin="0 10" Name="SetButton" Text="Select" StyleClasses="OpenRight" Access="Public" HorizontalAlignment="Right"/>
  13. </GridContainer>
  14. <controls:HLine Color="#404040" Thickness="1" Margin="0 5"/>
  15. <!-- Icon and Description -->
  16. <GridContainer Margin="0 5" Columns="2">
  17. <TextureRect Name="Icon" Margin="10" Stretch="KeepAspectCentered"
  18. VerticalAlignment="Center" HorizontalAlignment="Right" SetSize="64 64"/>
  19. <Label Name="SetDescription" Text="Description"></Label>
  20. </GridContainer>
  21. </BoxContainer>
  22. </PanelContainer>
  23. </Control>