diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-05-25 14:42:26 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-05-25 14:42:26 +0300 |
| commit | 12e1d8aa9466d6777d7591ebc59e7f968804c78e (patch) | |
| tree | 43e133ef0dd8fc230c3e4c3c1814f6acfc58e5fd /Software/Visual_Studio/Utilities/Tango.MachineEM.UI/Views/MainView.xaml | |
| parent | a7d1b350a7e6789942bd755f4a8dd48fb15a1a0a (diff) | |
| download | Tango-12e1d8aa9466d6777d7591ebc59e7f968804c78e.tar.gz Tango-12e1d8aa9466d6777d7591ebc59e7f968804c78e.zip | |
Implemented spool presence.
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.MachineEM.UI/Views/MainView.xaml')
| -rw-r--r-- | Software/Visual_Studio/Utilities/Tango.MachineEM.UI/Views/MainView.xaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.MachineEM.UI/Views/MainView.xaml b/Software/Visual_Studio/Utilities/Tango.MachineEM.UI/Views/MainView.xaml index 23154aafd..4dad04d28 100644 --- a/Software/Visual_Studio/Utilities/Tango.MachineEM.UI/Views/MainView.xaml +++ b/Software/Visual_Studio/Utilities/Tango.MachineEM.UI/Views/MainView.xaml @@ -127,6 +127,9 @@ <Run Text="{Binding ElementName=sliderTemperature,Path=Value,StringFormat='0.0',Mode=OneWay}"></Run> </TextBlock> <Slider x:Name="sliderTemperature" Margin="0 5 0 0" Minimum="0" Maximum="60" Value="{Binding Emulator.MachineStatus.OverallTemperature,Mode=TwoWay}"></Slider> + + <TextBlock Margin="0 10 0 0">SPOOL STATE</TextBlock> + <ComboBox Margin="0 5 0 0" Width="150" ItemsSource="{Binding Source={x:Type pmr:SpoolState},Converter={StaticResource EnumToItemsSourceConverter}}" SelectedValue="{Binding Emulator.MachineStatus.SpoolState,Mode=TwoWay}" SelectedValuePath="Value" DisplayMemberPath="DisplayName"></ComboBox> </StackPanel> </StackPanel> </Border> |
