1
0

ThresholdControl.xaml 860 B

123456789101112131415161718
  1. <BoxContainer xmlns="https://spacestation14.io"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. Orientation="Vertical" Margin="0 0 0 4">
  4. <Collapsible>
  5. <CollapsibleHeading Name="CName" />
  6. <CollapsibleBody Margin="20 0 0 0">
  7. <BoxContainer Orientation="Vertical">
  8. <BoxContainer Orientation="Horizontal">
  9. <CheckBox Name="CEnabled" Text="{Loc 'Enabled'}" />
  10. </BoxContainer>
  11. <!-- Upper row: Danger bounds -->
  12. <BoxContainer Name="CDangerBounds" Orientation="Horizontal" Margin="0 0 0 2"/>
  13. <!-- Lower row: Warning bounds -->
  14. <BoxContainer Name="CWarningBounds" Orientation="Horizontal" Margin="0 6 0 2"/>
  15. </BoxContainer>
  16. </CollapsibleBody>
  17. </Collapsible>
  18. </BoxContainer>