|
@@ -11,6 +11,7 @@
|
|
|
<UserControl.Resources>
|
|
|
<converters:BoolToColor x:Key="boolToColor"/>
|
|
|
<converters:BoolToRedColor x:Key="boolToRedColor"/>
|
|
|
+ <converters:BoolToYellowColor x:Key="boolToYellowColor"/>
|
|
|
</UserControl.Resources>
|
|
|
<GroupBox Header="{Binding ElementName=self,Path=ModuleTitle}" Background="{DynamicResource Table_BD_Title}" BorderBrush="DarkGray" Height="500">
|
|
|
<Grid>
|
|
@@ -111,7 +112,7 @@
|
|
|
<Label Height="40" Content="Fan" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</WrapPanel>
|
|
|
<WrapPanel Grid.Row="0" Grid.Column="2" >
|
|
|
- <Ellipse Margin="5,0" Width="16" Height="16" Fill="{Binding ElementName=self,Path=RemoteOff, Converter={StaticResource boolToRedColor}}" Stroke="Silver"/>
|
|
|
+ <Ellipse Margin="5,0" Width="16" Height="16" Fill="{Binding ElementName=self,Path=RemoteOff, Converter={StaticResource boolToYellowColor}}" Stroke="Silver"/>
|
|
|
<Label Height="40" Content="Remote Off" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</WrapPanel>
|
|
|
<WrapPanel Grid.Row="1" Grid.Column="0" >
|
|
@@ -135,7 +136,7 @@
|
|
|
<Label Height="40" Content="Int Sensor Failure" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</WrapPanel>
|
|
|
<WrapPanel Grid.Row="2" Grid.Column="2" >
|
|
|
- <Ellipse Margin="5,0" Width="16" Height="16" Fill="{Binding ElementName=self,Path=TempLimitWarn, Converter={StaticResource boolToRedColor}}" Stroke="Silver"/>
|
|
|
+ <Ellipse Margin="5,0" Width="16" Height="16" Fill="{Binding ElementName=self,Path=TempLimitWarn, Converter={StaticResource boolToYellowColor}}" Stroke="Silver"/>
|
|
|
<Label Height="40" Content="Temp Limit Warn" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
</WrapPanel>
|
|
|
<WrapPanel Grid.Row="3" Grid.Column="0" >
|