SystemSafetyView.xaml 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. <UserControl x:Class="PunkHPX8_MainPages.Views.SystemSafetyView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PunkHPX8_MainPages.Views"
  7. xmlns:converters="clr-namespace:PunkHPX8_Themes.Converters;assembly=PunkHPX8_Themes"
  8. xmlns:UserControls="clr-namespace:PunkHPX8_Themes.UserControls;assembly=PunkHPX8_Themes"
  9. xmlns:prism="http://prismlibrary.com/"
  10. prism:ViewModelLocator.AutoWireViewModel="True"
  11. mc:Ignorable="d"
  12. d:DesignHeight="850" d:DesignWidth="1800">
  13. <UserControl.Resources>
  14. <converters:BoolToErrorColor x:Key="boolToErrorColor"></converters:BoolToErrorColor>
  15. <converters:BoolToYellowColor x:Key="boolToYellowColor"></converters:BoolToYellowColor>
  16. <converters:BoolToYellowColor2 x:Key="boolToYellowColor2"></converters:BoolToYellowColor2>
  17. <converters:BoolToRedColor x:Key="boolToRedColor"></converters:BoolToRedColor>
  18. <converters:boolToRedColor2 x:Key="boolToRedColor2"></converters:boolToRedColor2>
  19. <converters:BoolToGreenRedColor x:Key="boolToGreenRedColor"></converters:BoolToGreenRedColor>
  20. <converters:BoolToRedGreenColor x:Key="boolToRedGreenColor"></converters:BoolToRedGreenColor>
  21. <converters:BoolToColor x:Key="boolToColor"></converters:BoolToColor>
  22. <converters:BoolToColor4 x:Key="boolToColor4"></converters:BoolToColor4>
  23. <converters:BoolToColor6 x:Key="boolToColor6"></converters:BoolToColor6>
  24. <converters:BoolToColor7 x:Key="boolToColor7"></converters:BoolToColor7>
  25. <converters:BoolToBool x:Key="boolReverse"></converters:BoolToBool>
  26. </UserControl.Resources>
  27. <Grid>
  28. <Grid.ColumnDefinitions>
  29. <ColumnDefinition Width="380"></ColumnDefinition>
  30. <ColumnDefinition Width="420"></ColumnDefinition>
  31. <ColumnDefinition Width="380"></ColumnDefinition>
  32. <ColumnDefinition Width="500"></ColumnDefinition>
  33. <ColumnDefinition/>
  34. </Grid.ColumnDefinitions>
  35. <Grid Grid.Column="0">
  36. <Grid.RowDefinitions>
  37. <RowDefinition Height="200"></RowDefinition>
  38. <RowDefinition Height="1"></RowDefinition>
  39. <RowDefinition Height="450"></RowDefinition>
  40. <RowDefinition Height="150"></RowDefinition>
  41. </Grid.RowDefinitions>
  42. <GroupBox Grid.Row="4" Grid.Column="0" Header="Controls" Height="100" Margin="5,0,5,0">
  43. <Grid>
  44. <Grid.RowDefinitions>
  45. <RowDefinition Height="40"></RowDefinition>
  46. <RowDefinition Height="40"></RowDefinition>
  47. </Grid.RowDefinitions>
  48. <Grid.ColumnDefinitions>
  49. <ColumnDefinition Width="200"></ColumnDefinition>
  50. <ColumnDefinition Width="100"></ColumnDefinition>
  51. </Grid.ColumnDefinitions>
  52. <Label Grid.Row="0" Grid.Column="0" Content="Halt Button Left" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  53. <Label Grid.Row="1" Grid.Column="0" Content="Halt Button Right" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  54. <Ellipse Grid.Row="0" Grid.Column="1" Margin="0,7,-15,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.HaltButtonLeft,Converter={StaticResource boolToGreenRedColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  55. <Ellipse Grid.Row="1" Grid.Column="1" Margin="0,7,-15,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.HaltButtonRight,Converter={StaticResource boolToGreenRedColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  56. </Grid>
  57. </GroupBox>
  58. <GroupBox Grid.Row="0" Grid.RowSpan="2" Header="Scheduler/Job Status" Height="190" VerticalAlignment="Top" Margin="5,0,5,0">
  59. <Grid>
  60. <Grid.RowDefinitions>
  61. <RowDefinition Height="40"></RowDefinition>
  62. <RowDefinition Height="40"></RowDefinition>
  63. <RowDefinition Height="40"></RowDefinition>
  64. <RowDefinition Height="40"></RowDefinition>
  65. </Grid.RowDefinitions>
  66. <Grid.ColumnDefinitions>
  67. <ColumnDefinition Width="150"></ColumnDefinition>
  68. <ColumnDefinition Width="100"></ColumnDefinition>
  69. <ColumnDefinition Width="100"></ColumnDefinition>
  70. </Grid.ColumnDefinitions>
  71. <Label Grid.Row="0" Grid.Column="0" Content="Schedule Mode" VerticalAlignment="Center" FontWeight="Bold" Margin="25,0,0,0"/>
  72. <Label Grid.Row="2" Grid.Column="0" Content="Processing State" VerticalAlignment="Center" FontWeight="Bold" Margin="25,0,0,0"/>
  73. <Border Grid.Row="1" Grid.Column="0" Margin="5,5,5,5" Background="Black" Width="70" VerticalAlignment="Center" HorizontalAlignment="Right" >
  74. <TextBlock Text="{Binding ElementName=self,Path=TotalFlow}" Foreground="Lime" FontSize="16" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  75. </Border>
  76. <Border Grid.Row="3" Grid.Column="0" Margin="5,5,5,5" Background="Black" Width="70" VerticalAlignment="Center" HorizontalAlignment="Right" >
  77. <TextBlock Text="{Binding ElementName=self,Path=TotalFlow}" Foreground="Lime" FontSize="16" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  78. </Border>
  79. <Button Grid.Row="1" Grid.Column="1" Style="{StaticResource SysBtnStyle}" Content="Pause" Width="75" Height="25" HorizontalAlignment="Center" Command="{Binding ResetCommand}" Margin="0,0,0,0"></Button>
  80. <Button Grid.Row="1" Grid.Column="3" Style="{StaticResource SysBtnStyle}" Content="Resi,e" Width="75" Height="25" HorizontalAlignment="Center" Command="{Binding ResetCommand}" Margin="0,0,0,0"></Button>
  81. </Grid>
  82. </GroupBox>
  83. <GroupBox Grid.Row="2" Grid.RowSpan="2" Header="Safety I/O" VerticalAlignment="Top" Margin="5,0,5,0">
  84. <Grid>
  85. <Grid.RowDefinitions>
  86. <RowDefinition Height="1"></RowDefinition>
  87. <RowDefinition Height="40"></RowDefinition>
  88. <RowDefinition Height="40"></RowDefinition>
  89. <RowDefinition Height="40"></RowDefinition>
  90. <RowDefinition Height="300"></RowDefinition>
  91. </Grid.RowDefinitions>
  92. <Grid.ColumnDefinitions>
  93. <ColumnDefinition Width="200"></ColumnDefinition>
  94. <ColumnDefinition Width="100"></ColumnDefinition>
  95. <ColumnDefinition Width="50"></ColumnDefinition>
  96. </Grid.ColumnDefinitions>
  97. <Button Grid.Row="2" Grid.Column="0" Style="{StaticResource SysBtnStyle}" Content="Reset" Width="75" Height="30" HorizontalAlignment="Left" Command="{Binding ResetCommand}" Margin="35,0,0,0"></Button>
  98. <Label Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" Margin="165,35,0,0">
  99. <TextBlock Text="State" FontWeight="Bold" HorizontalAlignment="Right" >
  100. <TextBlock.LayoutTransform>
  101. <RotateTransform Angle="-90"/>
  102. </TextBlock.LayoutTransform>
  103. </TextBlock>
  104. </Label>
  105. <Label Grid.Row="1" Grid.Column="1" Grid.RowSpan="2" Margin="65,20,0,0">
  106. <TextBlock Text="ComErr" FontWeight="Bold" HorizontalAlignment="Right" >
  107. <TextBlock.LayoutTransform>
  108. <RotateTransform Angle="-90"/>
  109. </TextBlock.LayoutTransform>
  110. </TextBlock>
  111. </Label>
  112. <Label Grid.Row="1" Grid.Column="2" Grid.RowSpan="2" Margin="0,30,0,0">
  113. <TextBlock Text="FbErr" FontWeight="Bold" HorizontalAlignment="Right" >
  114. <TextBlock.LayoutTransform>
  115. <RotateTransform Angle="-90"/>
  116. </TextBlock.LayoutTransform>
  117. </TextBlock>
  118. </Label>
  119. <Label Grid.Row="3" Grid.Column="0" Content="TwinCAT State" VerticalAlignment="Center" FontWeight="Bold" Margin="25,0,0,0"/>
  120. <Ellipse Grid.Row="3" Grid.Column="0" Margin="4,7,12,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Right">
  121. <Ellipse.Style>
  122. <Style TargetType="Ellipse">
  123. <Setter Property="Fill" Value="red"/>
  124. <Style.Triggers>
  125. <DataTrigger Binding="{Binding CommonSafetyData.TwincatState}" Value="8">
  126. <Setter Property="Fill" Value="lime" />
  127. </DataTrigger>
  128. </Style.Triggers>
  129. </Style>
  130. </Ellipse.Style>
  131. </Ellipse>
  132. <Ellipse Grid.Row="3" Grid.Column="1" Margin="72,0,0,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.MainCommErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  133. <Ellipse Grid.Row="3" Grid.Column="2" Margin="0,0,0,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.MainFbErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  134. <TextBox Name="TwinCATState" Margin="-37,0,0,0" Grid.Row="3" Grid.Column="1" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.TwincatState}"/>
  135. <Grid Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="3" >
  136. <GroupBox Header="Controllers" Margin="10,10,20,20">
  137. <Grid>
  138. <Grid.RowDefinitions>
  139. <RowDefinition Height="30"></RowDefinition>
  140. <RowDefinition Height="30"></RowDefinition>
  141. <RowDefinition Height="30"></RowDefinition>
  142. <RowDefinition Height="30"></RowDefinition>
  143. <RowDefinition Height="30"></RowDefinition>
  144. <RowDefinition Height="30"></RowDefinition>
  145. <RowDefinition Height="30"></RowDefinition>
  146. <RowDefinition Height="30"></RowDefinition>
  147. </Grid.RowDefinitions>
  148. <Grid.ColumnDefinitions>
  149. <ColumnDefinition Width="32"></ColumnDefinition>
  150. <ColumnDefinition Width="118"/>
  151. <ColumnDefinition Width="30"></ColumnDefinition>
  152. <ColumnDefinition Width="70"></ColumnDefinition>
  153. <ColumnDefinition Width="30"></ColumnDefinition>
  154. <ColumnDefinition Width="30"></ColumnDefinition>
  155. </Grid.ColumnDefinitions>
  156. <Label Grid.Column="0" Content="Facility Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  157. <Label Grid.Row="1" Grid.Column="0" Content="VPW Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  158. <Label Grid.Row="2" Grid.Column="0" Content="Reservoir 1/2 Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  159. <Label Grid.Row="3" Grid.Column="0" Content="Reservoir 3/4 Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  160. <Label Grid.Row="4" Grid.Column="0" Content="PlatingCell 1/2 Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  161. <Label Grid.Row="5" Grid.Column="0" Content="PlatingCell 3/4 Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  162. <Label Grid.Row="6" Grid.Column="0" Content="SRD Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  163. <TextBox Grid.Row="0" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.FacilityHotConnectState}" Margin="0,2,0,2"/>
  164. <TextBox Grid.Row="1" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.VpwHotConnectState}" Margin="0,2,0,2"/>
  165. <TextBox Grid.Row="2" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.Res12HotConnectState}" Margin="0,2,0,2"/>
  166. <TextBox Grid.Row="3" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.Res34HotConnectState}" Margin="0,2,0,2"/>
  167. <TextBox Grid.Row="4" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.Plating12HotConnectState}" Margin="0,2,0,2"/>
  168. <TextBox Grid.Row="5" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.Plating34HotConnectState}" Margin="0,2,0,2"/>
  169. <TextBox Grid.Row="6" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.SrdHotConnectState}" Margin="0,2,0,2"/>
  170. <Ellipse Grid.Row="0" Grid.Column="4" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.FacilityCommErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  171. <Ellipse Grid.Row="1" Grid.Column="4" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.VpwCommErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  172. <Ellipse Grid.Row="2" Grid.Column="4" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.Res12CommErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  173. <Ellipse Grid.Row="3" Grid.Column="4" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.Res34CommErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  174. <Ellipse Grid.Row="4" Grid.Column="4" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.Plating12CommErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  175. <Ellipse Grid.Row="5" Grid.Column="4" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.Plating34CommErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  176. <Ellipse Grid.Row="6" Grid.Column="4" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdCommErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  177. <Ellipse Grid.Row="0" Grid.Column="5" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.FacilityFbErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  178. <Ellipse Grid.Row="1" Grid.Column="5" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.VpwFbErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  179. <Ellipse Grid.Row="2" Grid.Column="5" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.Res12FbErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  180. <Ellipse Grid.Row="3" Grid.Column="5" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.Res34FbErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  181. <Ellipse Grid.Row="4" Grid.Column="5" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.Plating12FbErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  182. <Ellipse Grid.Row="5" Grid.Column="5" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.Plating34FbErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  183. <Ellipse Grid.Row="6" Grid.Column="5" Margin="5,7,0,7" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdFbErr,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  184. <Ellipse Grid.Row="0" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  185. <Ellipse.Style>
  186. <Style TargetType="Ellipse">
  187. <Setter Property="Fill" Value="red"/>
  188. <Style.Triggers>
  189. <DataTrigger Binding="{Binding CommonSafetyData.FacilityHotConnectState}" Value="8">
  190. <Setter Property="Fill" Value="lime" />
  191. </DataTrigger>
  192. </Style.Triggers>
  193. </Style>
  194. </Ellipse.Style>
  195. </Ellipse>
  196. <Ellipse Grid.Row="1" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  197. <Ellipse.Style>
  198. <Style TargetType="Ellipse">
  199. <Setter Property="Fill" Value="red"/>
  200. <Style.Triggers>
  201. <DataTrigger Binding="{Binding CommonSafetyData.VpwHotConnectState}" Value="8">
  202. <Setter Property="Fill" Value="lime" />
  203. </DataTrigger>
  204. </Style.Triggers>
  205. </Style>
  206. </Ellipse.Style>
  207. </Ellipse>
  208. <Ellipse Grid.Row="2" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  209. <Ellipse.Style>
  210. <Style TargetType="Ellipse">
  211. <Setter Property="Fill" Value="red"/>
  212. <Style.Triggers>
  213. <DataTrigger Binding="{Binding CommonSafetyData.Res12HotConnectState}" Value="8">
  214. <Setter Property="Fill" Value="lime" />
  215. </DataTrigger>
  216. </Style.Triggers>
  217. </Style>
  218. </Ellipse.Style>
  219. </Ellipse>
  220. <Ellipse Grid.Row="3" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  221. <Ellipse.Style>
  222. <Style TargetType="Ellipse">
  223. <Setter Property="Fill" Value="red"/>
  224. <Style.Triggers>
  225. <DataTrigger Binding="{Binding CommonSafetyData.Res34HotConnectState}" Value="8">
  226. <Setter Property="Fill" Value="lime" />
  227. </DataTrigger>
  228. </Style.Triggers>
  229. </Style>
  230. </Ellipse.Style>
  231. </Ellipse>
  232. <Ellipse Grid.Row="4" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  233. <Ellipse.Style>
  234. <Style TargetType="Ellipse">
  235. <Setter Property="Fill" Value="red"/>
  236. <Style.Triggers>
  237. <DataTrigger Binding="{Binding CommonSafetyData.Plating12HotConnectState}" Value="8">
  238. <Setter Property="Fill" Value="lime" />
  239. </DataTrigger>
  240. </Style.Triggers>
  241. </Style>
  242. </Ellipse.Style>
  243. </Ellipse>
  244. <Ellipse Grid.Row="5" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  245. <Ellipse.Style>
  246. <Style TargetType="Ellipse">
  247. <Setter Property="Fill" Value="red"/>
  248. <Style.Triggers>
  249. <DataTrigger Binding="{Binding CommonSafetyData.Plating34HotConnectState}" Value="8">
  250. <Setter Property="Fill" Value="lime" />
  251. </DataTrigger>
  252. </Style.Triggers>
  253. </Style>
  254. </Ellipse.Style>
  255. </Ellipse>
  256. <Ellipse Grid.Row="6" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  257. <Ellipse.Style>
  258. <Style TargetType="Ellipse">
  259. <Setter Property="Fill" Value="red"/>
  260. <Style.Triggers>
  261. <DataTrigger Binding="{Binding CommonSafetyData.SrdHotConnectState}" Value="8">
  262. <Setter Property="Fill" Value="lime" />
  263. </DataTrigger>
  264. </Style.Triggers>
  265. </Style>
  266. </Ellipse.Style>
  267. </Ellipse>
  268. </Grid>
  269. </GroupBox>
  270. </Grid>
  271. </Grid>
  272. </GroupBox>
  273. </Grid>
  274. <Grid Grid.Column="1">
  275. <Grid.RowDefinitions>
  276. <RowDefinition Height="600"></RowDefinition>
  277. <RowDefinition Height="250"></RowDefinition>
  278. </Grid.RowDefinitions>
  279. <Grid>
  280. <Grid.RowDefinitions>
  281. <RowDefinition Height="150"></RowDefinition>
  282. <RowDefinition Height="270"></RowDefinition>
  283. <RowDefinition Height="180"></RowDefinition>
  284. </Grid.RowDefinitions>
  285. <Grid.ColumnDefinitions>
  286. <ColumnDefinition Width="420"></ColumnDefinition>
  287. <ColumnDefinition Width="220"></ColumnDefinition>
  288. </Grid.ColumnDefinitions>
  289. <GroupBox Grid.Row="0" Grid.Column="0" Grid.RowSpan="2" Header="Motion Access" Margin="5,0,5,80">
  290. <Grid>
  291. <Grid.RowDefinitions>
  292. <RowDefinition Height="40"></RowDefinition>
  293. <RowDefinition Height="40"></RowDefinition>
  294. <RowDefinition Height="40"></RowDefinition>
  295. <RowDefinition Height="40"></RowDefinition>
  296. <RowDefinition Height="40"></RowDefinition>
  297. <RowDefinition Height="40"></RowDefinition>
  298. <RowDefinition Height="50"></RowDefinition>
  299. </Grid.RowDefinitions>
  300. <Grid.ColumnDefinitions>
  301. <ColumnDefinition Width="180"></ColumnDefinition>
  302. <ColumnDefinition Width="80"></ColumnDefinition>
  303. <ColumnDefinition Width="80"></ColumnDefinition>
  304. <ColumnDefinition Width="30"></ColumnDefinition>
  305. </Grid.ColumnDefinitions>
  306. <Label Grid.Row="0" Grid.Column="0" Content="Cassette Door Left" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  307. <Label Grid.Row="1" Grid.Column="0" Content="Cassette Door Right" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  308. <Label Grid.Row="2" Grid.Column="0" Content="Cell 1/2 Door Left" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  309. <Label Grid.Row="3" Grid.Column="0" Content="Cell 1/2 Door Right" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  310. <Label Grid.Row="4" Grid.Column="0" Content="Cell 3/4 Door Left" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  311. <Label Grid.Row="5" Grid.Column="0" Content="Cell 3/4 Door Right" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  312. <Label Grid.Row="6" Grid.Column="0" Content="Aligner Door" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  313. <Button Grid.Row="0" Grid.Column="1" Grid.RowSpan="2" Style="{StaticResource SysBtnStyle}" Content="Lock" Width="65" Height="25" HorizontalAlignment="Left" Margin="4,0,0,0" Command="{Binding LockCassetteDoorsCommand}"></Button>
  314. <Button Grid.Row="0" Grid.Column="2" Grid.RowSpan="2" Style="{StaticResource SysBtnStyle}" Content="Unlock" Width="65" Height="25" HorizontalAlignment="Left" Command="{Binding UnlockCassetteDoorsCommand}"></Button>
  315. <Button Grid.Row="2" Grid.Column="1" Grid.RowSpan="2" Style="{StaticResource SysBtnStyle}" Content="Lock" Width="65" Height="25" HorizontalAlignment="Left" Margin="4,0,0,0" Command="{Binding LockCell12DoorsCommand}"></Button>
  316. <Button Grid.Row="2" Grid.Column="2" Grid.RowSpan="2" Style="{StaticResource SysBtnStyle}" Content="Unlock" Width="65" Height="25" HorizontalAlignment="Left" Command="{Binding UnlockCell12DoorsCommand}"></Button>
  317. <Button Grid.Row="4" Grid.Column="1" Grid.RowSpan="2" Style="{StaticResource SysBtnStyle}" Content="Lock" Width="65" Height="25" HorizontalAlignment="Left" Margin="4,0,0,0" Command="{Binding LockCell34DoorsCommand}"></Button>
  318. <Button Grid.Row="4" Grid.Column="2" Grid.RowSpan="2" Style="{StaticResource SysBtnStyle}" Content="Unlock" Width="65" Height="25" HorizontalAlignment="Left" Command="{Binding UnlockCell34DoorsCommand}"></Button>
  319. <Button Grid.Row="6" Grid.Column="1" Grid.RowSpan="2" Style="{StaticResource SysBtnStyle}" Content="Lock" Width="65" Height="25" HorizontalAlignment="Left" Margin="4,0,0,0" Command="{Binding LockAlignerDoorsCommand}"></Button>
  320. <Button Grid.Row="6" Grid.Column="2" Grid.RowSpan="2" Style="{StaticResource SysBtnStyle}" Content="Unlock" Width="65" Height="25" HorizontalAlignment="Left" Command="{Binding UnlockAlignerDoorsCommand}"></Button>
  321. <UserControls:LockControl Grid.Row="0" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.CassetteDoorsLeftLocked}"/>
  322. <UserControls:LockControl Grid.Row="1" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.CassetteDoorsRightLocked}"/>
  323. <UserControls:LockControl Grid.Row="2" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.Cell12DoorsLeftLocked}"/>
  324. <UserControls:LockControl Grid.Row="3" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.Cell12DoorsRightLocked}"/>
  325. <UserControls:LockControl Grid.Row="4" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.Cell34DoorsLeftLocked}"/>
  326. <UserControls:LockControl Grid.Row="5" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.Cell34DoorsRightLocked}"/>
  327. <UserControls:LockControl Grid.Row="6" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.AlignerDoorClosed}"/>
  328. </Grid>
  329. </GroupBox>
  330. <GroupBox Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" Header="Door And Access Panels" VerticalAlignment="Center" Margin="5,150,5,0" >
  331. <Grid Height="200">
  332. <Grid.RowDefinitions>
  333. <RowDefinition Height="40"></RowDefinition>
  334. <RowDefinition Height="40"></RowDefinition>
  335. <RowDefinition Height="40"></RowDefinition>
  336. <RowDefinition Height="40"></RowDefinition>
  337. <RowDefinition Height="40"></RowDefinition>
  338. </Grid.RowDefinitions>
  339. <Grid.ColumnDefinitions>
  340. <ColumnDefinition Width="200"></ColumnDefinition>
  341. <ColumnDefinition Width="100"></ColumnDefinition>
  342. </Grid.ColumnDefinitions>
  343. <Label Grid.Row="0" Grid.Column="0" Content="Reservoir 1/2 Door" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  344. <Label Grid.Row="1" Grid.Column="0" Content="Reservoir 3/4 Door" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  345. <Label Grid.Row="2" Grid.Column="0" Content="VPW Top/Bottom Door" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  346. <Label Grid.Row="3" Grid.Column="0" Content="Plumbing Panels" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  347. <Label Grid.Row="4" Grid.Column="0" Content="SRD Panel" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  348. <Ellipse Grid.Row="0" Grid.Column="1" Margin="0,0,6,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.Res12DoorClosed,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  349. <Ellipse Grid.Row="1" Grid.Column="1" Margin="0,0,6,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.Res34DoorClosed,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  350. <Ellipse Grid.Row="2" Grid.Column="1" Margin="0,0,6,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.VpwDoorClosed,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  351. <Ellipse Grid.Row="3" Grid.Column="1" Margin="0,0,6,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.PlumblingDoorClosed,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  352. <Ellipse Grid.Row="4" Grid.Column="1" Margin="0,0,6,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdPanelClosed,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  353. </Grid>
  354. </GroupBox>
  355. </Grid>
  356. <Grid Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" Margin="0,-40,0,0">
  357. <Grid.ColumnDefinitions>
  358. <ColumnDefinition Width="420"></ColumnDefinition>
  359. </Grid.ColumnDefinitions>
  360. <GroupBox Grid.Column="0" Header="Containment Fluid Detection" Margin="5,0,5,20">
  361. <Grid>
  362. <Grid.ColumnDefinitions>
  363. <ColumnDefinition Width="220"></ColumnDefinition>
  364. <ColumnDefinition Width="100"></ColumnDefinition>
  365. </Grid.ColumnDefinitions>
  366. <Grid.RowDefinitions>
  367. <RowDefinition Height="40"></RowDefinition>
  368. <RowDefinition Height="40"></RowDefinition>
  369. <RowDefinition Height="40"></RowDefinition>
  370. <RowDefinition Height="40"></RowDefinition>
  371. <RowDefinition Height="40"></RowDefinition>
  372. <RowDefinition Height="40"></RowDefinition>
  373. </Grid.RowDefinitions>
  374. <Label Grid.Row="0" Grid.Column="0" Content="Plating Cell 1/2 Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  375. <Label Grid.Row="1" Grid.Column="0" Content="Plating Cell 3/4 Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  376. <Label Grid.Row="2" Grid.Column="0" Content="Vacuum Prewet Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  377. <Label Grid.Row="3" Grid.Column="0" Content="Sammple #1 Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  378. <Label Grid.Row="4" Grid.Column="0" Content="Sammple #2 Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  379. <Label Grid.Row="5" Grid.Column="0" Content="Frame Containment Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  380. <Ellipse Grid.Row="0" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding IsProcessTransMoving,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  381. <Ellipse Grid.Row="1" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding IsProcessTransMoving,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  382. <Ellipse Grid.Row="2" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding IsLoaderMoving,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  383. <Ellipse Grid.Row="3" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding IsPufsMoving,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  384. <Ellipse Grid.Row="4" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding IsSRDsMoving,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  385. <Ellipse Grid.Row="5" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding IsLoaderTransMoving,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  386. </Grid>
  387. </GroupBox>
  388. </Grid>
  389. </Grid>
  390. <Grid Grid.Column="2">
  391. <Grid.RowDefinitions>
  392. <RowDefinition Height="320"></RowDefinition>
  393. <RowDefinition Height="250"></RowDefinition>
  394. </Grid.RowDefinitions>
  395. <GroupBox Grid.Row="0" Header="Pump Interlocks(EDM)" Margin="5,0,5,0">
  396. <Grid>
  397. <Grid.RowDefinitions>
  398. <RowDefinition Height="40"></RowDefinition>
  399. <RowDefinition Height="40"></RowDefinition>
  400. <RowDefinition Height="40"></RowDefinition>
  401. <RowDefinition Height="40"></RowDefinition>
  402. <RowDefinition Height="40"></RowDefinition>
  403. <RowDefinition Height="40"></RowDefinition>
  404. <RowDefinition Height="40"></RowDefinition>
  405. </Grid.RowDefinitions>
  406. <Grid.ColumnDefinitions>
  407. <ColumnDefinition Width="300"></ColumnDefinition>
  408. <ColumnDefinition Width="50"></ColumnDefinition>
  409. </Grid.ColumnDefinitions>
  410. <Label Grid.Row="0" Grid.Column="0" Content="Reservoir 1/2 CA Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  411. <Label Grid.Row="1" Grid.Column="0" Content="Reservoir 3/4 CA Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  412. <Label Grid.Row="2" Grid.Column="0" Content="RES Degas 1 Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  413. <Label Grid.Row="3" Grid.Column="0" Content="RES Degas 2 Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  414. <Label Grid.Row="4" Grid.Column="0" Content="VPW Vacuum Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  415. <Label Grid.Row="5" Grid.Column="0" Content="VPW Booster Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  416. <Label Grid.Row="6" Grid.Column="0" Content="EXT Fluid Enable" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  417. <Ellipse Grid.Row="0" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsPuf1VerticalOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  418. <Ellipse Grid.Row="1" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsPuf1VerticalOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  419. <Ellipse Grid.Row="2" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsPuf1RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  420. <Ellipse Grid.Row="3" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsPuf1FlipOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  421. <Ellipse Grid.Row="4" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsPuf2VerticalOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  422. <Ellipse Grid.Row="5" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsPuf2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  423. <Ellipse Grid.Row="6" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsPuf2FlipOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  424. </Grid>
  425. </GroupBox>
  426. <GroupBox Grid.Row="1" Header="Level High" VerticalAlignment="Top" Margin="5,0,5,0">
  427. <Grid Height="160">
  428. <Grid.ColumnDefinitions>
  429. <ColumnDefinition Width="200"></ColumnDefinition>
  430. <ColumnDefinition Width="100"></ColumnDefinition>
  431. </Grid.ColumnDefinitions>
  432. <Grid.RowDefinitions>
  433. <RowDefinition Height="40"></RowDefinition>
  434. <RowDefinition Height="40"></RowDefinition>
  435. <RowDefinition Height="40"></RowDefinition>
  436. <RowDefinition Height="40"></RowDefinition>
  437. </Grid.RowDefinitions>
  438. <Label Grid.Row="0" Grid.Column="0" Content="Reservoir 1 CA" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  439. <Ellipse Grid.Row="0" Grid.Column="1" Margin="0,0,-32,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.PufVerticalSafeSto,Converter={StaticResource boolToYellowColor2}}" Stroke="Silver" HorizontalAlignment="Right"/>
  440. <Label Grid.Row="1" Grid.Column="0" Content="Reservoir 2 CA" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  441. <Ellipse Grid.Row="1" Grid.Column="1" Margin="0,0,-32,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.PufVerticalSafeSls,Converter={StaticResource boolToYellowColor2}}" Stroke="Silver" HorizontalAlignment="Right"/>
  442. <Label Grid.Row="2" Grid.Column="0" Content="Reservoir 3 CA" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  443. <Ellipse Grid.Row="2" Grid.Column="1" Margin="0,0,-32,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.Puf1FlipRotationSafeSto,Converter={StaticResource boolToYellowColor2}}" Stroke="Silver" HorizontalAlignment="Right"/>
  444. <Label Grid.Row="3" Grid.Column="0" Content="Reservoir 4 CA" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  445. <Ellipse Grid.Row="3" Grid.Column="1" Margin="0,0,-32,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.Puf2FlipRotationSafeSto,Converter={StaticResource boolToYellowColor2}}" Stroke="Silver" HorizontalAlignment="Right"/>
  446. </Grid>
  447. </GroupBox>
  448. </Grid>
  449. <Grid Grid.Column="3">
  450. <Grid.RowDefinitions>
  451. <RowDefinition Height="530"></RowDefinition>
  452. </Grid.RowDefinitions>
  453. <GroupBox Grid.Row="0" Header="Motion" VerticalAlignment="Center" Margin="5,0,5,0">
  454. <Grid Height="530">
  455. <Grid.ColumnDefinitions>
  456. <ColumnDefinition Width="300"></ColumnDefinition>
  457. <ColumnDefinition Width="80"></ColumnDefinition>
  458. <ColumnDefinition Width="80"></ColumnDefinition>
  459. </Grid.ColumnDefinitions>
  460. <Grid.RowDefinitions>
  461. <RowDefinition Height="60"></RowDefinition>
  462. <RowDefinition Height="30"></RowDefinition>
  463. <RowDefinition Height="40"></RowDefinition>
  464. <RowDefinition Height="40"></RowDefinition>
  465. <RowDefinition Height="40"></RowDefinition>
  466. <RowDefinition Height="40"></RowDefinition>
  467. <RowDefinition Height="40"></RowDefinition>
  468. <RowDefinition Height="40"></RowDefinition>
  469. <RowDefinition Height="40"></RowDefinition>
  470. <RowDefinition Height="40"></RowDefinition>
  471. <RowDefinition Height="40"></RowDefinition>
  472. <RowDefinition Height="40"></RowDefinition>
  473. </Grid.RowDefinitions>
  474. <Button Grid.Row="0" Grid.Column="0" Style="{StaticResource SysBtnStyle}" Margin="35,0,0,0" Content="On" Width="65" Height="20" HorizontalAlignment="Left" Command="{Binding AllOnCommand}"></Button>
  475. <Label Grid.Row="0" Grid.Column="0" Content="All Amplifiers" Margin="0,0,25,0" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Right"/>
  476. <Label Grid.Row="1" Grid.Column="0" Content="Amplifiers" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  477. <Label Grid.Row="1" Grid.Column="1" Content="On" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  478. <Label Grid.Row="1" Grid.Column="2" Content="Disable" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  479. <Label Grid.Row="2" Grid.Column="0" Content="VPW Cell 1 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  480. <Label Grid.Row="3" Grid.Column="0" Content="VPW Cell 2 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  481. <Label Grid.Row="4" Grid.Column="0" Content="Plating Cell 1 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  482. <Label Grid.Row="5" Grid.Column="0" Content="Plating Cell 2 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  483. <Label Grid.Row="6" Grid.Column="0" Content="Plating Cell 3 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  484. <Label Grid.Row="7" Grid.Column="0" Content="Plating Cell 4 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  485. <Label Grid.Row="8" Grid.Column="0" Content="Plating Cell 1/2 Lift" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  486. <Label Grid.Row="9" Grid.Column="0" Content="Plating Cell 3/4 Lift" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  487. <Label Grid.Row="10" Grid.Column="0" Content="SRD Cell 1 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  488. <Label Grid.Row="11" Grid.Column="0" Content="SRD Cell 2 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  489. <Ellipse Grid.Row="2" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd1RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  490. <Ellipse Grid.Row="2" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdRotationDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  491. <Ellipse Grid.Row="3" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2ArmOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  492. <Ellipse Grid.Row="3" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdArmDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  493. <Ellipse Grid.Row="4" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  494. <Ellipse Grid.Row="4" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdRotationDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  495. <Ellipse Grid.Row="5" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  496. <Ellipse Grid.Row="5" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdRotationDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  497. <Ellipse Grid.Row="6" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  498. <Ellipse Grid.Row="6" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdRotationDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  499. <Ellipse Grid.Row="7" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  500. <Ellipse Grid.Row="7" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdRotationDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  501. <Ellipse Grid.Row="8" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  502. <Ellipse Grid.Row="8" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdRotationDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  503. <Ellipse Grid.Row="9" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  504. <Ellipse Grid.Row="9" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdRotationDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  505. <Ellipse Grid.Row="10" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  506. <Ellipse Grid.Row="10" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdRotationDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  507. <Ellipse Grid.Row="11" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  508. <Ellipse Grid.Row="11" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.SrdRotationDisable,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  509. </Grid>
  510. </GroupBox>
  511. </Grid>
  512. </Grid>
  513. </UserControl>