EditSolutionsWindow.xaml 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <DefaultWindow
  2. SetSize="300 400"
  3. Margin="4 0"
  4. xmlns="https://spacestation14.io">
  5. <BoxContainer Orientation="Vertical">
  6. <BoxContainer Orientation="Horizontal" HorizontalExpand="True" Margin="0 4">
  7. <Label Text ="{Loc 'admin-solutions-window-solution-label'}" Margin="0 0 10 0"/>
  8. <OptionButton Name="SolutionOption" HorizontalExpand="True"/>
  9. </BoxContainer>
  10. <!-- The total volume / capacity of the solution -->
  11. <BoxContainer Name="VolumeBox" Orientation="Vertical" HorizontalExpand="True" Margin="0 4"/>
  12. <!-- The temperature / heat capacity / thermal energy of the solution -->
  13. <Collapsible>
  14. <CollapsibleHeading Name="ThermalHeading" Title="{Loc 'admin-solutions-window-thermals'}" />
  15. <CollapsibleBody>
  16. <BoxContainer Name="ThermalBox" Orientation="Vertical" HorizontalExpand="True" Margin="0 4"/>
  17. </CollapsibleBody>
  18. </Collapsible>
  19. <!-- The reagents in the solution -->
  20. <ScrollContainer HorizontalExpand="True" VerticalExpand="True" Margin="0 4">
  21. <BoxContainer Name="ReagentList" Orientation="Vertical"/>
  22. </ScrollContainer>
  23. <Button Name="AddButton" Text="{Loc 'admin-solutions-window-add-new-button'}" HorizontalExpand="True" Margin="0 4"/>
  24. </BoxContainer>
  25. </DefaultWindow>