* DisposalUnitWindow to XAML * DisposalTaggerWindow to XAML * Remove unused imports * DisposalRouterWindow to XAML * Fix localization
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<SS14Window xmlns="https://spacestation14.io"
|
|
MinSize="300 140"
|
|
SetSize="300 140"
|
|
Resizable="False">
|
|
<BoxContainer Orientation="Vertical">
|
|
<BoxContainer Orientation="Horizontal"
|
|
SeparationOverride="4">
|
|
<Label Text="{Loc 'ui-disposal-unit-label-state'}" />
|
|
<Label Name="UnitState"
|
|
Text="{Loc 'ui-disposal-unit-label-status'}" />
|
|
</BoxContainer>
|
|
<Control MinSize="0 5" />
|
|
<BoxContainer Orientation="Horizontal"
|
|
SeparationOverride="4">
|
|
<Label Text="{Loc 'ui-disposal-unit-label-pressure'}" />
|
|
<ProgressBar Name="PressureBar"
|
|
MinSize="190 20"
|
|
HorizontalAlignment="Right"
|
|
MinValue="0"
|
|
MaxValue="1"
|
|
Page="0"
|
|
Value="0.5" />
|
|
</BoxContainer>
|
|
<Control MinSize="0 10" />
|
|
<BoxContainer Orientation="Horizontal">
|
|
<Button Name="EngageProtected"
|
|
Text="{Loc 'ui-disposal-unit-button-flush'}"
|
|
StyleClasses="OpenRight"
|
|
ToggleMode="True" />
|
|
<Button Name="EjectProtected"
|
|
Text="{Loc 'ui-disposal-unit-button-eject'}"
|
|
StyleClasses="OpenBoth" />
|
|
<CheckButton Name="PowerProtected"
|
|
Text="{Loc 'ui-disposal-unit-button-power'}"
|
|
StyleClasses="OpenLeft" />
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</SS14Window>
|