ReagentCardControl.xaml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Control xmlns="https://spacestation14.io" HorizontalExpand="True">
  2. <BoxContainer Name="MainContainer"
  3. Orientation="Horizontal"
  4. HorizontalExpand="True">
  5. <PanelContainer Name="ColorPanel"
  6. VerticalExpand="True"
  7. SetWidth="7"
  8. Margin="0 1 0 0" />
  9. <Button Name="MainButton"
  10. HorizontalExpand="True"
  11. VerticalExpand="True"
  12. StyleClasses="ButtonSquare"
  13. Margin="-1 0 0 0">
  14. <BoxContainer Orientation="Horizontal" HorizontalExpand="True">
  15. <BoxContainer Orientation="Vertical"
  16. VerticalExpand="True"
  17. HorizontalExpand="True"
  18. Margin="-5 0 0 0">
  19. <Label Name="ReagentNameLabel" />
  20. <Label Name="FillLabel"
  21. StyleClasses="LabelSubText"
  22. Margin="0 -5 0 0" />
  23. </BoxContainer>
  24. </BoxContainer>
  25. </Button>
  26. <Button Name="EjectButton"
  27. StyleClasses="OpenLeft"
  28. VerticalExpand="True"
  29. SetWidth="20">
  30. <Label Name="EjectButtonIcon"
  31. VerticalAlignment="Center"
  32. HorizontalAlignment="Center"
  33. Margin="-7 -4 0 0" />
  34. </Button>
  35. </BoxContainer>
  36. </Control>