1
0

CargoOrderRow.xaml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <PanelContainer xmlns="https://spacestation14.io"
  2. HorizontalExpand="True">
  3. <BoxContainer Orientation="Horizontal"
  4. HorizontalExpand="True">
  5. <TextureRect Name="Icon"
  6. Access="Public"
  7. MinSize="32 32"
  8. RectClipContent="True" />
  9. <BoxContainer Orientation="Vertical"
  10. HorizontalExpand="True"
  11. VerticalExpand="True">
  12. <Label Name="ProductName"
  13. Access="Public"
  14. HorizontalExpand="True"
  15. StyleClasses="LabelSubText"
  16. ClipText="True" />
  17. <Label Name="Description"
  18. Access="Public"
  19. HorizontalExpand="True"
  20. StyleClasses="LabelSubText"
  21. ClipText="True" />
  22. </BoxContainer>
  23. <Button Name="Approve"
  24. Access="Public"
  25. Text="{Loc 'cargo-console-menu-cargo-order-row-approve-button'}"
  26. StyleClasses="LabelSubText" />
  27. <Button Name="Cancel"
  28. Access="Public"
  29. Text="{Loc 'cargo-console-menu-cargo-order-row-cancel-button'}"
  30. StyleClasses="LabelSubText" />
  31. </BoxContainer>
  32. </PanelContainer>