SystemSafetyView.xaml 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  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="250"></RowDefinition>
  40. <RowDefinition Height="150"></RowDefinition>
  41. </Grid.RowDefinitions>
  42. <GroupBox Grid.Row="3" 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="3" Header="Safety I/O" VerticalAlignment="Top" Margin="5,0,5,0">
  59. <Grid>
  60. <Grid.RowDefinitions>
  61. <RowDefinition Height="1"></RowDefinition>
  62. <RowDefinition Height="40"></RowDefinition>
  63. <RowDefinition Height="40"></RowDefinition>
  64. <RowDefinition Height="40"></RowDefinition>
  65. <RowDefinition Height="300"></RowDefinition>
  66. </Grid.RowDefinitions>
  67. <Grid.ColumnDefinitions>
  68. <ColumnDefinition Width="200"></ColumnDefinition>
  69. <ColumnDefinition Width="100"></ColumnDefinition>
  70. <ColumnDefinition Width="50"></ColumnDefinition>
  71. </Grid.ColumnDefinitions>
  72. <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>
  73. <Label Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" Margin="165,35,0,0">
  74. <TextBlock Text="State" FontWeight="Bold" HorizontalAlignment="Right" >
  75. <TextBlock.LayoutTransform>
  76. <RotateTransform Angle="-90"/>
  77. </TextBlock.LayoutTransform>
  78. </TextBlock>
  79. </Label>
  80. <Label Grid.Row="1" Grid.Column="1" Grid.RowSpan="2" Margin="65,20,0,0">
  81. <TextBlock Text="ComErr" FontWeight="Bold" HorizontalAlignment="Right" >
  82. <TextBlock.LayoutTransform>
  83. <RotateTransform Angle="-90"/>
  84. </TextBlock.LayoutTransform>
  85. </TextBlock>
  86. </Label>
  87. <Label Grid.Row="1" Grid.Column="2" Grid.RowSpan="2" Margin="0,30,0,0">
  88. <TextBlock Text="FbErr" FontWeight="Bold" HorizontalAlignment="Right" >
  89. <TextBlock.LayoutTransform>
  90. <RotateTransform Angle="-90"/>
  91. </TextBlock.LayoutTransform>
  92. </TextBlock>
  93. </Label>
  94. <Label Grid.Row="3" Grid.Column="0" Content="TwinCAT State" VerticalAlignment="Center" FontWeight="Bold" Margin="25,0,0,0"/>
  95. <Ellipse Grid.Row="3" Grid.Column="0" Margin="4,7,12,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Right">
  96. <Ellipse.Style>
  97. <Style TargetType="Ellipse">
  98. <Setter Property="Fill" Value="red"/>
  99. <Style.Triggers>
  100. <DataTrigger Binding="{Binding CommonSafetyData.TwincatState}" Value="8">
  101. <Setter Property="Fill" Value="lime" />
  102. </DataTrigger>
  103. </Style.Triggers>
  104. </Style>
  105. </Ellipse.Style>
  106. </Ellipse>
  107. <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"/>
  108. <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"/>
  109. <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}"/>
  110. <Grid Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="3" >
  111. <GroupBox Header="Controllers" Margin="10,10,20,20">
  112. <Grid>
  113. <Grid.RowDefinitions>
  114. <RowDefinition Height="30"></RowDefinition>
  115. <RowDefinition Height="30"></RowDefinition>
  116. <RowDefinition Height="30"></RowDefinition>
  117. <RowDefinition Height="30"></RowDefinition>
  118. <RowDefinition Height="30"></RowDefinition>
  119. <RowDefinition Height="30"></RowDefinition>
  120. <RowDefinition Height="30"></RowDefinition>
  121. <RowDefinition Height="30"></RowDefinition>
  122. </Grid.RowDefinitions>
  123. <Grid.ColumnDefinitions>
  124. <ColumnDefinition Width="32"></ColumnDefinition>
  125. <ColumnDefinition Width="118"/>
  126. <ColumnDefinition Width="30"></ColumnDefinition>
  127. <ColumnDefinition Width="70"></ColumnDefinition>
  128. <ColumnDefinition Width="30"></ColumnDefinition>
  129. <ColumnDefinition Width="30"></ColumnDefinition>
  130. </Grid.ColumnDefinitions>
  131. <Label Grid.Column="0" Content="Facility Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  132. <Label Grid.Row="1" Grid.Column="0" Content="VPW Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  133. <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"/>
  134. <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"/>
  135. <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"/>
  136. <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"/>
  137. <Label Grid.Row="6" Grid.Column="0" Content="SRD Ctrl" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.ColumnSpan="2"/>
  138. <TextBox Grid.Row="0" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.FacilityHotConnectState}" Margin="0,2,0,2"/>
  139. <TextBox Grid.Row="1" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.VpwHotConnectState}" Margin="0,2,0,2"/>
  140. <TextBox Grid.Row="2" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.Res12HotConnectState}" Margin="0,2,0,2"/>
  141. <TextBox Grid.Row="3" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.Res34HotConnectState}" Margin="0,2,0,2"/>
  142. <TextBox Grid.Row="4" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.Plating12HotConnectState}" Margin="0,2,0,2"/>
  143. <TextBox Grid.Row="5" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.Plating34HotConnectState}" Margin="0,2,0,2"/>
  144. <TextBox Grid.Row="6" Grid.Column="3" Width="70" Height="25" HorizontalContentAlignment="Left" VerticalContentAlignment="Center" Text="{Binding CommonSafetyData.SrdHotConnectState}" Margin="0,2,0,2"/>
  145. <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"/>
  146. <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"/>
  147. <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"/>
  148. <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"/>
  149. <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"/>
  150. <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"/>
  151. <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"/>
  152. <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"/>
  153. <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"/>
  154. <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"/>
  155. <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"/>
  156. <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"/>
  157. <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"/>
  158. <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"/>
  159. <Ellipse Grid.Row="0" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  160. <Ellipse.Style>
  161. <Style TargetType="Ellipse">
  162. <Setter Property="Fill" Value="red"/>
  163. <Style.Triggers>
  164. <DataTrigger Binding="{Binding CommonSafetyData.FacilityHotConnectState}" Value="8">
  165. <Setter Property="Fill" Value="lime" />
  166. </DataTrigger>
  167. </Style.Triggers>
  168. </Style>
  169. </Ellipse.Style>
  170. </Ellipse>
  171. <Ellipse Grid.Row="1" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  172. <Ellipse.Style>
  173. <Style TargetType="Ellipse">
  174. <Setter Property="Fill" Value="red"/>
  175. <Style.Triggers>
  176. <DataTrigger Binding="{Binding CommonSafetyData.VpwHotConnectState}" Value="8">
  177. <Setter Property="Fill" Value="lime" />
  178. </DataTrigger>
  179. </Style.Triggers>
  180. </Style>
  181. </Ellipse.Style>
  182. </Ellipse>
  183. <Ellipse Grid.Row="2" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  184. <Ellipse.Style>
  185. <Style TargetType="Ellipse">
  186. <Setter Property="Fill" Value="red"/>
  187. <Style.Triggers>
  188. <DataTrigger Binding="{Binding CommonSafetyData.Res12HotConnectState}" Value="8">
  189. <Setter Property="Fill" Value="lime" />
  190. </DataTrigger>
  191. </Style.Triggers>
  192. </Style>
  193. </Ellipse.Style>
  194. </Ellipse>
  195. <Ellipse Grid.Row="3" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  196. <Ellipse.Style>
  197. <Style TargetType="Ellipse">
  198. <Setter Property="Fill" Value="red"/>
  199. <Style.Triggers>
  200. <DataTrigger Binding="{Binding CommonSafetyData.Res34HotConnectState}" Value="8">
  201. <Setter Property="Fill" Value="lime" />
  202. </DataTrigger>
  203. </Style.Triggers>
  204. </Style>
  205. </Ellipse.Style>
  206. </Ellipse>
  207. <Ellipse Grid.Row="4" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  208. <Ellipse.Style>
  209. <Style TargetType="Ellipse">
  210. <Setter Property="Fill" Value="red"/>
  211. <Style.Triggers>
  212. <DataTrigger Binding="{Binding CommonSafetyData.Plating12HotConnectState}" Value="8">
  213. <Setter Property="Fill" Value="lime" />
  214. </DataTrigger>
  215. </Style.Triggers>
  216. </Style>
  217. </Ellipse.Style>
  218. </Ellipse>
  219. <Ellipse Grid.Row="5" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  220. <Ellipse.Style>
  221. <Style TargetType="Ellipse">
  222. <Setter Property="Fill" Value="red"/>
  223. <Style.Triggers>
  224. <DataTrigger Binding="{Binding CommonSafetyData.Plating34HotConnectState}" Value="8">
  225. <Setter Property="Fill" Value="lime" />
  226. </DataTrigger>
  227. </Style.Triggers>
  228. </Style>
  229. </Ellipse.Style>
  230. </Ellipse>
  231. <Ellipse Grid.Row="6" Grid.Column="2" Margin="4,7,0,7" Width="16" Height="16" Stroke="Silver" HorizontalAlignment="Left">
  232. <Ellipse.Style>
  233. <Style TargetType="Ellipse">
  234. <Setter Property="Fill" Value="red"/>
  235. <Style.Triggers>
  236. <DataTrigger Binding="{Binding CommonSafetyData.SrdHotConnectState}" Value="8">
  237. <Setter Property="Fill" Value="lime" />
  238. </DataTrigger>
  239. </Style.Triggers>
  240. </Style>
  241. </Ellipse.Style>
  242. </Ellipse>
  243. </Grid>
  244. </GroupBox>
  245. </Grid>
  246. </Grid>
  247. </GroupBox>
  248. </Grid>
  249. <Grid Grid.Column="1">
  250. <Grid.RowDefinitions>
  251. <RowDefinition Height="600"></RowDefinition>
  252. <RowDefinition Height="250"></RowDefinition>
  253. </Grid.RowDefinitions>
  254. <Grid>
  255. <Grid.RowDefinitions>
  256. <RowDefinition Height="150"></RowDefinition>
  257. <RowDefinition Height="270"></RowDefinition>
  258. <RowDefinition Height="180"></RowDefinition>
  259. </Grid.RowDefinitions>
  260. <Grid.ColumnDefinitions>
  261. <ColumnDefinition Width="420"></ColumnDefinition>
  262. <ColumnDefinition Width="220"></ColumnDefinition>
  263. </Grid.ColumnDefinitions>
  264. <GroupBox Grid.Row="0" Grid.Column="0" Grid.RowSpan="2" Header="Motion Access" Margin="5,0,5,80">
  265. <Grid>
  266. <Grid.RowDefinitions>
  267. <RowDefinition Height="40"></RowDefinition>
  268. <RowDefinition Height="40"></RowDefinition>
  269. <RowDefinition Height="40"></RowDefinition>
  270. <RowDefinition Height="40"></RowDefinition>
  271. <RowDefinition Height="40"></RowDefinition>
  272. <RowDefinition Height="40"></RowDefinition>
  273. <RowDefinition Height="50"></RowDefinition>
  274. </Grid.RowDefinitions>
  275. <Grid.ColumnDefinitions>
  276. <ColumnDefinition Width="180"></ColumnDefinition>
  277. <ColumnDefinition Width="80"></ColumnDefinition>
  278. <ColumnDefinition Width="80"></ColumnDefinition>
  279. <ColumnDefinition Width="30"></ColumnDefinition>
  280. </Grid.ColumnDefinitions>
  281. <Label Grid.Row="0" Grid.Column="0" Content="Cassette Door Left" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  282. <Label Grid.Row="1" Grid.Column="0" Content="Cassette Door Right" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  283. <Label Grid.Row="2" Grid.Column="0" Content="Cell 1/2 Door Left" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  284. <Label Grid.Row="3" Grid.Column="0" Content="Cell 1/2 Door Right" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  285. <Label Grid.Row="4" Grid.Column="0" Content="Cell 3/4 Door Left" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  286. <Label Grid.Row="5" Grid.Column="0" Content="Cell 3/4 Door Right" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  287. <Label Grid.Row="6" Grid.Column="0" Content="Aligner Door" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  288. <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>
  289. <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>
  290. <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>
  291. <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>
  292. <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>
  293. <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>
  294. <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>
  295. <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>
  296. <UserControls:LockControl Grid.Row="0" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.CassetteDoorsLeftLocked}"/>
  297. <UserControls:LockControl Grid.Row="1" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.CassetteDoorsRightLocked}"/>
  298. <UserControls:LockControl Grid.Row="2" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.Cell12DoorsLeftLocked}"/>
  299. <UserControls:LockControl Grid.Row="3" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.Cell12DoorsRightLocked}"/>
  300. <UserControls:LockControl Grid.Row="4" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.Cell34DoorsLeftLocked}"/>
  301. <UserControls:LockControl Grid.Row="5" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.Cell34DoorsRightLocked}"/>
  302. <UserControls:LockControl Grid.Row="6" Grid.Column="3" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,0,5" IsLocked="{Binding CommonSafetyData.AlignerDoorClosed}"/>
  303. </Grid>
  304. </GroupBox>
  305. <GroupBox Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" Header="Door And Access Panels" VerticalAlignment="Center" Margin="5,150,5,0" >
  306. <Grid Height="200">
  307. <Grid.RowDefinitions>
  308. <RowDefinition Height="40"></RowDefinition>
  309. <RowDefinition Height="40"></RowDefinition>
  310. <RowDefinition Height="40"></RowDefinition>
  311. <RowDefinition Height="40"></RowDefinition>
  312. <RowDefinition Height="40"></RowDefinition>
  313. </Grid.RowDefinitions>
  314. <Grid.ColumnDefinitions>
  315. <ColumnDefinition Width="200"></ColumnDefinition>
  316. <ColumnDefinition Width="100"></ColumnDefinition>
  317. </Grid.ColumnDefinitions>
  318. <Label Grid.Row="0" Grid.Column="0" Content="Reservoir 1/2 Door" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  319. <Label Grid.Row="1" Grid.Column="0" Content="Reservoir 3/4 Door" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  320. <Label Grid.Row="2" Grid.Column="0" Content="VPW Top/Bottom Door" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  321. <Label Grid.Row="3" Grid.Column="0" Content="Plumbing Panels" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  322. <Label Grid.Row="4" Grid.Column="0" Content="SRD Panel" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  323. <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"/>
  324. <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"/>
  325. <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"/>
  326. <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"/>
  327. <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"/>
  328. </Grid>
  329. </GroupBox>
  330. </Grid>
  331. <Grid Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" Margin="0,-40,0,0">
  332. <Grid.ColumnDefinitions>
  333. <ColumnDefinition Width="420"></ColumnDefinition>
  334. </Grid.ColumnDefinitions>
  335. <GroupBox Grid.Column="0" Header="Containment Fluid Detection" Margin="5,0,5,20">
  336. <Grid>
  337. <Grid.ColumnDefinitions>
  338. <ColumnDefinition Width="220"></ColumnDefinition>
  339. <ColumnDefinition Width="100"></ColumnDefinition>
  340. </Grid.ColumnDefinitions>
  341. <Grid.RowDefinitions>
  342. <RowDefinition Height="40"></RowDefinition>
  343. <RowDefinition Height="40"></RowDefinition>
  344. <RowDefinition Height="40"></RowDefinition>
  345. <RowDefinition Height="40"></RowDefinition>
  346. <RowDefinition Height="40"></RowDefinition>
  347. <RowDefinition Height="40"></RowDefinition>
  348. </Grid.RowDefinitions>
  349. <Label Grid.Row="0" Grid.Column="0" Content="Plating Cell 1/2 Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  350. <Label Grid.Row="1" Grid.Column="0" Content="Plating Cell 3/4 Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  351. <Label Grid.Row="2" Grid.Column="0" Content="Vacuum Prewet Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  352. <Label Grid.Row="3" Grid.Column="0" Content="Sammple #1 Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  353. <Label Grid.Row="4" Grid.Column="0" Content="Sammple #2 Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  354. <Label Grid.Row="5" Grid.Column="0" Content="Frame Containment Leak Detect" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  355. <Ellipse Grid.Row="0" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.PlatingCell12LeakDetected,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  356. <Ellipse Grid.Row="1" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.PlatingCell34LeakDetected,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  357. <Ellipse Grid.Row="2" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.VacuumPrewetLeakDetected,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  358. <Ellipse Grid.Row="3" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.SampleStation1LeakDetected,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  359. <Ellipse Grid.Row="4" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.SampleStation2LeakDetected,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  360. <Ellipse Grid.Row="5" Grid.Column="1" Margin="60,0,0,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.FrameContainmentLeakDetected,Converter={StaticResource boolToYellowColor}}" Stroke="Silver" HorizontalAlignment="Left"/>
  361. </Grid>
  362. </GroupBox>
  363. </Grid>
  364. </Grid>
  365. <Grid Grid.Column="2">
  366. <Grid.RowDefinitions>
  367. <RowDefinition Height="320"></RowDefinition>
  368. <RowDefinition Height="250"></RowDefinition>
  369. </Grid.RowDefinitions>
  370. <GroupBox Grid.Row="0" Header="Pump Interlocks(EDM)" Margin="5,0,5,0">
  371. <Grid>
  372. <Grid.RowDefinitions>
  373. <RowDefinition Height="40"></RowDefinition>
  374. <RowDefinition Height="40"></RowDefinition>
  375. <RowDefinition Height="40"></RowDefinition>
  376. <RowDefinition Height="40"></RowDefinition>
  377. <RowDefinition Height="40"></RowDefinition>
  378. <RowDefinition Height="40"></RowDefinition>
  379. <RowDefinition Height="40"></RowDefinition>
  380. </Grid.RowDefinitions>
  381. <Grid.ColumnDefinitions>
  382. <ColumnDefinition Width="300"></ColumnDefinition>
  383. <ColumnDefinition Width="50"></ColumnDefinition>
  384. </Grid.ColumnDefinitions>
  385. <Label Grid.Row="0" Grid.Column="0" Content="Reservoir 1/2 CA Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  386. <Label Grid.Row="1" Grid.Column="0" Content="Reservoir 3/4 CA Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  387. <Label Grid.Row="2" Grid.Column="0" Content="RES Degas 1 Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  388. <Label Grid.Row="3" Grid.Column="0" Content="RES Degas 2 Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  389. <Label Grid.Row="4" Grid.Column="0" Content="VPW Vacuum Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  390. <Label Grid.Row="5" Grid.Column="0" Content="VPW Booster Pump" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  391. <Label Grid.Row="6" Grid.Column="0" Content="EXT Fluid Enable" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  392. <Ellipse Grid.Row="0" Grid.Column="1" Width="16" Height="16" Fill="{Binding CommonSafetyData.Reservoir12CAPumpEdm,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  393. <Ellipse Grid.Row="1" Grid.Column="1" Width="16" Height="16" Fill="{Binding CommonSafetyData.Reservoir34CAPumpEdm,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  394. <Ellipse Grid.Row="2" Grid.Column="1" Width="16" Height="16" Fill="{Binding CommonSafetyData.ResDegas1PumpEdm,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  395. <Ellipse Grid.Row="3" Grid.Column="1" Width="16" Height="16" Fill="{Binding CommonSafetyData.ResDegas2PumpEdm,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  396. <Ellipse Grid.Row="4" Grid.Column="1" Width="16" Height="16" Fill="{Binding CommonSafetyData.VpwVacuumPumpEdm,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  397. <Ellipse Grid.Row="5" Grid.Column="1" Width="16" Height="16" Fill="{Binding CommonSafetyData.VpwBoosterPumpEdm,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  398. <Ellipse Grid.Row="6" Grid.Column="1" Width="16" Height="16" Fill="{Binding CommonSafetyData.ExtFluidEnableEdm,Converter={StaticResource boolToRedGreenColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  399. </Grid>
  400. </GroupBox>
  401. <GroupBox Grid.Row="1" Header="Level High" VerticalAlignment="Top" Margin="5,0,5,0">
  402. <Grid Height="160">
  403. <Grid.ColumnDefinitions>
  404. <ColumnDefinition Width="200"></ColumnDefinition>
  405. <ColumnDefinition Width="100"></ColumnDefinition>
  406. </Grid.ColumnDefinitions>
  407. <Grid.RowDefinitions>
  408. <RowDefinition Height="40"></RowDefinition>
  409. <RowDefinition Height="40"></RowDefinition>
  410. <RowDefinition Height="40"></RowDefinition>
  411. <RowDefinition Height="40"></RowDefinition>
  412. </Grid.RowDefinitions>
  413. <Label Grid.Row="0" Grid.Column="0" Content="Reservoir 1 CA" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  414. <Ellipse Grid.Row="0" Grid.Column="1" Margin="0,0,-32,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.Reservoir1CALevelHigh,Converter={StaticResource boolToGreenRedColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  415. <Label Grid.Row="1" Grid.Column="0" Content="Reservoir 2 CA" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  416. <Ellipse Grid.Row="1" Grid.Column="1" Margin="0,0,-32,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.Reservoir2CALevelHigh,Converter={StaticResource boolToGreenRedColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  417. <Label Grid.Row="2" Grid.Column="0" Content="Reservoir 3 CA" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  418. <Ellipse Grid.Row="2" Grid.Column="1" Margin="0,0,-32,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.Reservoir3CALevelHigh,Converter={StaticResource boolToGreenRedColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  419. <Label Grid.Row="3" Grid.Column="0" Content="Reservoir 4 CA" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  420. <Ellipse Grid.Row="3" Grid.Column="1" Margin="0,0,-32,0" Width="16" Height="16" Fill="{Binding CommonSafetyData.Reservoir4CALevelHigh,Converter={StaticResource boolToGreenRedColor}}" Stroke="Silver" HorizontalAlignment="Right"/>
  421. </Grid>
  422. </GroupBox>
  423. </Grid>
  424. <Grid Grid.Column="3">
  425. <Grid.RowDefinitions>
  426. <RowDefinition Height="530"></RowDefinition>
  427. </Grid.RowDefinitions>
  428. <GroupBox Grid.Row="0" Header="Motion" VerticalAlignment="Center" Margin="5,0,5,0">
  429. <Grid Height="530">
  430. <Grid.ColumnDefinitions>
  431. <ColumnDefinition Width="300"></ColumnDefinition>
  432. <ColumnDefinition Width="80"></ColumnDefinition>
  433. <ColumnDefinition Width="80"></ColumnDefinition>
  434. </Grid.ColumnDefinitions>
  435. <Grid.RowDefinitions>
  436. <RowDefinition Height="60"></RowDefinition>
  437. <RowDefinition Height="30"></RowDefinition>
  438. <RowDefinition Height="40"></RowDefinition>
  439. <RowDefinition Height="40"></RowDefinition>
  440. <RowDefinition Height="40"></RowDefinition>
  441. <RowDefinition Height="40"></RowDefinition>
  442. <RowDefinition Height="40"></RowDefinition>
  443. <RowDefinition Height="40"></RowDefinition>
  444. <RowDefinition Height="40"></RowDefinition>
  445. <RowDefinition Height="40"></RowDefinition>
  446. <RowDefinition Height="40"></RowDefinition>
  447. <RowDefinition Height="40"></RowDefinition>
  448. </Grid.RowDefinitions>
  449. <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>
  450. <Label Grid.Row="0" Grid.Column="0" Content="All Amplifiers" Margin="0,0,25,0" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Right"/>
  451. <Label Grid.Row="1" Grid.Column="0" Content="Amplifiers" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  452. <Label Grid.Row="1" Grid.Column="1" Content="On" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  453. <Label Grid.Row="1" Grid.Column="2" Content="Disable" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Center"/>
  454. <Label Grid.Row="2" Grid.Column="0" Content="VPW Cell 1 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  455. <Label Grid.Row="3" Grid.Column="0" Content="VPW Cell 2 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  456. <Label Grid.Row="4" Grid.Column="0" Content="Plating Cell 1 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  457. <Label Grid.Row="5" Grid.Column="0" Content="Plating Cell 2 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  458. <Label Grid.Row="6" Grid.Column="0" Content="Plating Cell 3 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  459. <Label Grid.Row="7" Grid.Column="0" Content="Plating Cell 4 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  460. <Label Grid.Row="8" Grid.Column="0" Content="Plating Cell 1/2 Lift" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  461. <Label Grid.Row="9" Grid.Column="0" Content="Plating Cell 3/4 Lift" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  462. <Label Grid.Row="10" Grid.Column="0" Content="SRD Cell 1 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  463. <Label Grid.Row="11" Grid.Column="0" Content="SRD Cell 2 Rotate" Margin="5,0,0,0" FontWeight="Bold" VerticalAlignment="Center"/>
  464. <Ellipse Grid.Row="2" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsVpw1RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  465. <Ellipse Grid.Row="2" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.VpwCell1RotationStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  466. <Ellipse Grid.Row="3" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsVpw2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  467. <Ellipse Grid.Row="3" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.VpwCell2RotationStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  468. <Ellipse Grid.Row="4" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  469. <Ellipse Grid.Row="4" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.PlatingCell1RotationStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  470. <Ellipse Grid.Row="5" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  471. <Ellipse Grid.Row="5" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.PlatingCell2RotationStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  472. <Ellipse Grid.Row="6" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  473. <Ellipse Grid.Row="6" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.PlatingCell3RotationStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  474. <Ellipse Grid.Row="7" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  475. <Ellipse Grid.Row="7" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.PlatingCell4RotationStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  476. <Ellipse Grid.Row="8" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  477. <Ellipse Grid.Row="8" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.PlatingCell12VerticalStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  478. <Ellipse Grid.Row="9" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  479. <Ellipse Grid.Row="9" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.PlatingCell34VerticalStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  480. <Ellipse Grid.Row="10" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  481. <Ellipse Grid.Row="10" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.Srd1RotationStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  482. <Ellipse Grid.Row="11" Grid.Column="1" Width="16" Height="16" Fill="{Binding IsSrd2RotationOn,Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  483. <Ellipse Grid.Row="11" Grid.Column="2" Width="16" Height="16" Fill="{Binding CommonSafetyData.Srd2RotationStoEdm,Converter={StaticResource boolToErrorColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  484. </Grid>
  485. </GroupBox>
  486. </Grid>
  487. </Grid>
  488. </UserControl>