1
0

CargoConsoleOrderMenu.xaml 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. <DefaultWindow xmlns="https://spacestation14.io"
  2. Title="{Loc 'cargo-console-order-menu-title'}">
  3. <BoxContainer Orientation="Vertical">
  4. <GridContainer Columns="2">
  5. <Label Text="{Loc 'cargo-console-order-menu-product-label'}" />
  6. <Label Name="ProductName"
  7. Access="Public" />
  8. <Label Text="{Loc 'cargo-console-order-menu-description-label'}" />
  9. <RichTextLabel Name="Description"
  10. Access="Public"
  11. VerticalExpand="True"
  12. SetWidth="350"/>
  13. <Label Text="{Loc 'cargo-console-order-menu-cost-label'}" />
  14. <Label Name="PointCost"
  15. Access="Public" />
  16. <Label Text="{Loc 'cargo-console-order-menu-requester-label'}" />
  17. <LineEdit Name="Requester"
  18. Access="Public" />
  19. <Label Text="{Loc 'cargo-console-order-menu-reason-label'}" />
  20. <LineEdit Name="Reason"
  21. Access="Public" />
  22. <Label Text="{Loc 'cargo-console-order-menu-amount-label'}" />
  23. <SpinBox Name="Amount"
  24. Access="Public"
  25. HorizontalExpand="True"
  26. Value="1" />
  27. </GridContainer>
  28. <Button Name="SubmitButton"
  29. Access="Public"
  30. Text="{Loc 'cargo-console-order-menu-submit-button'}"
  31. TextAlign="Center" />
  32. </BoxContainer>
  33. </DefaultWindow>