E84Info.xaml 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585
  1. <UserControl x:Class="MECF.Framework.UI.Client.CenterViews.Controls.E84Info"
  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:i="http://schemas.microsoft.com/expression/2010/interactivity"
  7. xmlns:commonControl="clr-namespace:MECF.Framework.UI.Core.CommonControl;assembly=MECF.Framework.UI.Core"
  8. xmlns:controls="clr-namespace:MECF.Framework.UI.Client.CenterViews.Controls"
  9. mc:Ignorable="d"
  10. d:DesignHeight="800" d:DesignWidth="1200" Background="#91b0cd">
  11. <Grid x:Name="root">
  12. <Border HorizontalAlignment="Left" VerticalAlignment="Top" BorderThickness="1" BorderBrush="Transparent">
  13. <DockPanel Background="#d6f1ff">
  14. <Grid>
  15. <Grid.RowDefinitions>
  16. <RowDefinition Height="5*" />
  17. <RowDefinition Height="*" />
  18. <RowDefinition Height="4*" />
  19. </Grid.RowDefinitions>
  20. <Border Grid.Row="0" HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1"
  21. BorderBrush="#84a567" Height="310" Width="1120" Margin="0">
  22. <DockPanel Background="#d6f1ff">
  23. <Grid>
  24. <Grid.ColumnDefinitions>
  25. <ColumnDefinition Width="0.9*" />
  26. <ColumnDefinition Width="1.35*" />
  27. <ColumnDefinition Width="1.21*" />
  28. </Grid.ColumnDefinitions>
  29. <Border x:Name="LpBorder" Grid.Row="0" Grid.Column="0" HorizontalAlignment="Left"
  30. VerticalAlignment="Bottom" BorderThickness="1" BorderBrush="#84a567"
  31. Height="310" Width="290" Margin="0">
  32. <DockPanel Background="#d6f1ff">
  33. <Label Content="Pod Loader Status" HorizontalContentAlignment="Center"
  34. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" FontSize="14"/>
  35. <Grid>
  36. <Grid.RowDefinitions>
  37. <RowDefinition Height="4*" />
  38. <RowDefinition Height="*" />
  39. </Grid.RowDefinitions>
  40. <Border Grid.Row="0" BorderBrush="Gray" BorderThickness="1">
  41. <Grid >
  42. <Grid.ColumnDefinitions>
  43. <ColumnDefinition Width="*" />
  44. <ColumnDefinition Width="*" />
  45. </Grid.ColumnDefinitions>
  46. <Grid.RowDefinitions>
  47. <RowDefinition Height="30" />
  48. <RowDefinition Height="30" />
  49. <RowDefinition Height="30" />
  50. <RowDefinition Height="30" />
  51. <RowDefinition Height="30" />
  52. <RowDefinition Height="35" />
  53. <RowDefinition Height="30" />
  54. </Grid.RowDefinitions>
  55. <Label Grid.Row="0" Content="Pod Present:" FontSize="14"
  56. HorizontalContentAlignment="Right" />
  57. <controls:LED Grid.Row="0" Grid.Column="1"
  58. On="{Binding E84Data.PodPresent}" />
  59. <Label Grid.Row="1" Grid.Column="0" Content="Pod Placed:"
  60. FontSize="14"
  61. HorizontalContentAlignment="Right" />
  62. <controls:LED Grid.Row="1" Grid.Column="1"
  63. On="{Binding E84Data.PodPlaced}" />
  64. <Label Grid.Row="2" Grid.Column="0" Content="Pod Latched:"
  65. FontSize="14"
  66. HorizontalContentAlignment="Right" />
  67. <controls:LED Grid.Row="2" Grid.Column="1"
  68. On="{Binding E84Data.PodLatched}" />
  69. <Label Grid.Row="3" Grid.Column="0" Content="Pod Docked:"
  70. FontSize="14"
  71. HorizontalContentAlignment="Right" />
  72. <controls:LED Grid.Row="3" Grid.Column="1"
  73. On="{Binding E84Data.PodDocked}" />
  74. <Label Grid.Row="4" Grid.Column="0" Content="Pod Open:"
  75. FontSize="14"
  76. HorizontalContentAlignment="Right" />
  77. <controls:LED Grid.Row="4" Grid.Column="1"
  78. On="{Binding E84Data.PodDocked}" />
  79. <Label Content="{Binding E84Data.LoadPortState}" Grid.Row="5"
  80. Grid.ColumnSpan="2"
  81. Grid.Column="0"
  82. BorderThickness="2" BorderBrush="White" Width="160"
  83. Height="30" FontSize="14"
  84. HorizontalContentAlignment="Center"
  85. VerticalAlignment="Center" />
  86. <Label Grid.Row="6" Grid.Column="0" Content="Virtual Mode:"
  87. FontSize="14"
  88. HorizontalContentAlignment="Right" />
  89. <controls:LED Grid.Row="6" Grid.Column="1"
  90. On="{Binding E84Data.VirtualMode}" />
  91. </Grid>
  92. </Border>
  93. <WrapPanel Grid.Row="1">
  94. <Button Content="Place" x:Name="btnPlace" FontSize="14"
  95. Command="{Binding E84Command}"
  96. CommandParameter="E84Place"
  97. Width="80" Height="30" VerticalAlignment="Center"
  98. IsEnabled="False" />
  99. <Button Content="Pick" x:Name="btnPick" FontSize="14"
  100. Command="{Binding E84Command}"
  101. CommandParameter="E84Pick"
  102. Width="80" Height="30" VerticalAlignment="Center"
  103. IsEnabled="False" />
  104. <Button Content="Clamp" x:Name="btnClamp" FontSize="14"
  105. Command="{Binding E84Command}"
  106. CommandParameter="Clamp"
  107. Width="80" Height="30" VerticalAlignment="Center"
  108. IsEnabled="False" />
  109. </WrapPanel>
  110. </Grid>
  111. </DockPanel>
  112. </Border>
  113. <Border Grid.Column="1" HorizontalAlignment="Left" VerticalAlignment="Bottom"
  114. BorderThickness="1" BorderBrush="#84a567" Height="310" Width="434" Margin="0">
  115. <DockPanel Background="#d6f1ff">
  116. <Label Content="Load Port Status" HorizontalContentAlignment="Center"
  117. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" FontSize="14"/>
  118. <Grid>
  119. <Grid.RowDefinitions>
  120. <RowDefinition Height="205*" />
  121. <RowDefinition Height="143*" />
  122. </Grid.RowDefinitions>
  123. <Border Grid.Row="0" BorderBrush="Gray" BorderThickness="1"
  124. Margin="0,0,0,38" Grid.RowSpan="2">
  125. <Grid Margin="0,0,0,-31">
  126. <Grid.ColumnDefinitions>
  127. <ColumnDefinition Width="*" />
  128. <ColumnDefinition Width="1.7*" />
  129. </Grid.ColumnDefinitions>
  130. <Grid.RowDefinitions>
  131. <RowDefinition Height="30" />
  132. <RowDefinition Height="30" />
  133. <RowDefinition Height="30" />
  134. <RowDefinition Height="30" />
  135. <RowDefinition Height="30" />
  136. <RowDefinition Height="30" />
  137. <RowDefinition Height="30" />
  138. <RowDefinition Height="30" />
  139. <RowDefinition Height="30" />
  140. </Grid.RowDefinitions>
  141. <Label Grid.Row="0" Content="Port Reserved:" FontSize="14"
  142. HorizontalContentAlignment="Right" />
  143. <controls:LED Grid.Row="0" Grid.Column="1"
  144. On="{Binding E84Data.PodReserved}" Margin="5,0,10,0"
  145. Height="36" VerticalAlignment="Top" />
  146. <Label Grid.Row="1" Content="Port State:" FontSize="14"
  147. HorizontalContentAlignment="Right"
  148. VerticalAlignment="Center" />
  149. <Label Content="{Binding E84Data.PortState}" Grid.Row="1"
  150. Grid.Column="1"
  151. BorderThickness="2" BorderBrush="White"
  152. FontSize="18" HorizontalContentAlignment="Center"
  153. VerticalAlignment="Center" Margin="5,4,0,4" Height="31" />
  154. <Label Grid.Row="2" Content="Carrier ID:"
  155. HorizontalContentAlignment="Right" FontSize="14"
  156. VerticalAlignment="Center" />
  157. <Label Content="{Binding E84Data.CarrierID}" Grid.Row="2"
  158. Grid.Column="1" BorderThickness="2"
  159. BorderBrush="White" FontSize="18" Height="31"
  160. HorizontalContentAlignment="Center"
  161. VerticalAlignment="Center" Margin="5,4,0,4" />
  162. <Label Grid.Row="3" Content="Slot Map:"
  163. HorizontalContentAlignment="Right" FontSize="14"
  164. VerticalAlignment="Center" />
  165. <Label Content="{Binding E84Data.SlotMap}" Grid.Row="3"
  166. Grid.Column="1" BorderThickness="2"
  167. BorderBrush="White" FontSize="14"
  168. HorizontalContentAlignment="Center"
  169. VerticalAlignment="Bottom" Height="32" Margin="5,0,0,2" />
  170. <Label Grid.Row="4" Content="Access Mode:"
  171. HorizontalContentAlignment="Right" FontSize="14"
  172. VerticalAlignment="Center" />
  173. <Label Content="{Binding E84Data.AccessMode}" Grid.Row="4"
  174. Grid.Column="1" BorderThickness="2"
  175. BorderBrush="White" FontSize="14" Height="32"
  176. HorizontalContentAlignment="Center"
  177. VerticalAlignment="Center" Margin="5,4,0,3" />
  178. <Label Grid.Row="5" Content="Access Status:"
  179. HorizontalContentAlignment="Right" FontSize="14"
  180. VerticalAlignment="Center" />
  181. <Label Content="{Binding E84Data.AccessStatus}" Grid.Row="5"
  182. Grid.Column="1" BorderThickness="2"
  183. BorderBrush="White" FontSize="14" Height="33"
  184. HorizontalContentAlignment="Center"
  185. VerticalAlignment="Center" Margin="5,4,0,2" />
  186. <Label Grid.Row="6" Grid.Column=" 0" Content="ID Status:"
  187. HorizontalContentAlignment="Right" FontSize="14"
  188. VerticalAlignment="Center" Grid.ColumnSpan="1"
  189. Margin="0,8,0,0" Height="30" />
  190. <Label Content="{Binding E84Data.CarrierIDStatus}" Grid.Row="6"
  191. Grid.Column="1" BorderThickness="2"
  192. BorderBrush="White" FontSize="14" Height="33"
  193. HorizontalContentAlignment="Center"
  194. VerticalAlignment="Center" Margin="5,3,0,3"
  195. Grid.ColumnSpan="1" />
  196. <Label Grid.Row="7" Content="Slot Map Status:"
  197. HorizontalContentAlignment="Right" FontSize="14"
  198. VerticalAlignment="Center" Grid.Column="0" Margin="0,8,0,0"
  199. Height="30" />
  200. <Label Content="{Binding E84Data.SlotMapStatus}" Grid.Row="7"
  201. Grid.Column="1" BorderThickness="2"
  202. BorderBrush="White" FontSize="14" Height="37"
  203. HorizontalContentAlignment="Center"
  204. VerticalAlignment="Center" Margin="5,2,0,0" />
  205. <CheckBox Grid.Row="8" Content="Automatic Mode" IsChecked="false"
  206. VerticalAlignment="Center" HorizontalAlignment="Left"
  207. FontSize="16" Margin="0,4,0,0" Height="26" Width="180" Grid.ColumnSpan="2">
  208. <i:Interaction.Triggers>
  209. <i:EventTrigger EventName="Checked">
  210. <i:InvokeCommandAction Command="{Binding E84Command}"
  211. CommandParameter="SetAMHS" />
  212. </i:EventTrigger>
  213. <i:EventTrigger EventName="Unchecked">
  214. <i:InvokeCommandAction Command="{Binding E84Command}"
  215. CommandParameter="SetManual" />
  216. </i:EventTrigger>
  217. </i:Interaction.Triggers>
  218. </CheckBox>
  219. <CheckBox Grid.Row="8" Content="In Service" IsChecked="false"
  220. VerticalAlignment="Center" HorizontalAlignment="Left"
  221. FontSize="16" Margin="86,4,0,0" Height="26" Width="175" Grid.Column="1">
  222. <i:Interaction.Triggers>
  223. <i:EventTrigger EventName="Checked">
  224. <i:InvokeCommandAction Command="{Binding E84Command}"
  225. CommandParameter="SetInService" />
  226. </i:EventTrigger>
  227. <i:EventTrigger EventName="Unchecked">
  228. <i:InvokeCommandAction Command="{Binding E84Command}"
  229. CommandParameter="SetOutService" />
  230. </i:EventTrigger>
  231. </i:Interaction.Triggers>
  232. </CheckBox>
  233. </Grid>
  234. </Border>
  235. </Grid>
  236. </DockPanel>
  237. </Border>
  238. <Border x:Name="ConfigBorder1" Grid.Column="1" HorizontalAlignment="Left"
  239. VerticalAlignment="Bottom"
  240. BorderThickness="1" BorderBrush="#84a567" Height="310" Width="394"
  241. Margin="434,0,-1,0" Grid.ColumnSpan="2">
  242. <DockPanel Background="#d6f1ff">
  243. <Label Content="Carrier ID Reader" HorizontalContentAlignment="Center"
  244. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" FontSize="14"/>
  245. <Grid>
  246. <Border BorderBrush="Gray" BorderThickness="1">
  247. <Grid Margin="0,-1,-1,0">
  248. <Grid.ColumnDefinitions>
  249. <ColumnDefinition Width="169*" />
  250. <ColumnDefinition Width="210*" />
  251. </Grid.ColumnDefinitions>
  252. <Grid.RowDefinitions>
  253. <RowDefinition Height="30" />
  254. <RowDefinition Height="30" />
  255. <RowDefinition Height="30" />
  256. <RowDefinition Height="30" />
  257. <RowDefinition Height="30" />
  258. <RowDefinition Height="30" />
  259. <RowDefinition Height="30" />
  260. </Grid.RowDefinitions>
  261. <commonControl:AITScBoolRow ScName="In Service" Grid.Row="0"
  262. Grid.ColumnSpan="3"
  263. ScId="LoadPort.CarrierIdReaderInUse"
  264. ScFeedback="True"
  265. ScSetPoint="True"
  266. NameWidth="185" FeedbackWidth="70"
  267. SetPointWidth="70" CommandWidth="60"
  268. IsEnabled="False" />
  269. <commonControl:AITScDoubleRow ScName="Data Read Size" Grid.Row="1"
  270. Grid.ColumnSpan="2" Grid.Column="0"
  271. ScId="LoadPort.DataReadSize"
  272. ScFeedback="{Binding ConfigFeedback.LoadPort_DataReadSize}"
  273. ScSetPoint="{Binding ConfigSetPoint.LoadPort_DataReadSize}"
  274. Command="{Binding SetConfigCommand}"
  275. NameWidth="185" FeedbackWidth="70"
  276. SetPointWidth="70" CommandWidth="60" />
  277. <commonControl:AITScDoubleRow ScName="Start Page" Grid.Row="2"
  278. Grid.ColumnSpan="2" Grid.Column="0"
  279. ScId="LoadPort.StartPage"
  280. ScFeedback="{Binding ConfigFeedback.LoadPort_StartPage}"
  281. ScSetPoint="{Binding ConfigSetPoint.LoadPort_StartPage}"
  282. Command="{Binding SetConfigCommand}"
  283. NameWidth="185" FeedbackWidth="70"
  284. SetPointWidth="70" CommandWidth="60" />
  285. <commonControl:AITScBoolRow ScName="Auto Read" Grid.Row="3"
  286. Grid.ColumnSpan="2" Grid.Column="0"
  287. ScId="LoadPort.EnableAutoCarrierIdRead"
  288. ScFeedback="{Binding ConfigFeedback.LoadPort.EnableAutoCarrierIdRead}"
  289. ScSetPoint="{Binding ConfigSetPoint.LoadPort.EnableAutoCarrierIdRead}"
  290. Command="{Binding SetConfigCommand}"
  291. NameWidth="185" FeedbackWidth="70"
  292. SetPointWidth="70" CommandWidth="60" />
  293. <commonControl:AITScDoubleRow ScName="Default Page" Grid.Row="4"
  294. Grid.ColumnSpan="2" Grid.Column="0"
  295. ScId="LoadPort.DefaultPage"
  296. ScFeedback="{Binding ConfigFeedback.LoadPort_DefaultPage}"
  297. ScSetPoint="{Binding ConfigSetPoint.LoadPort_DefaultPage}"
  298. Command="{Binding SetConfigCommand}"
  299. NameWidth="185" FeedbackWidth="70"
  300. SetPointWidth="70" CommandWidth="60" />
  301. </Grid>
  302. </Border>
  303. </Grid>
  304. </DockPanel>
  305. </Border>
  306. </Grid>
  307. </DockPanel>
  308. </Border>
  309. <Border Grid.Row="1" HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1"
  310. BorderBrush="#84a567" Height="80" Width="1120" Margin="0">
  311. <DockPanel Background="#d6f1ff">
  312. <Label Content="E84 Status Monitor" HorizontalContentAlignment="Center"
  313. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" FontSize="14"/>
  314. <Grid>
  315. <Border BorderBrush="Gray" BorderThickness="1">
  316. <Grid >
  317. <Grid.ColumnDefinitions>
  318. <ColumnDefinition Width="*" />
  319. <ColumnDefinition Width="3*" />
  320. </Grid.ColumnDefinitions>
  321. <Label Grid.Row="1" Content="Status :" FontSize="14"
  322. HorizontalContentAlignment="Right" VerticalAlignment="Center" />
  323. <Label Content="{Binding E84Data.E84State}" Grid.Column="1"
  324. BorderThickness="2"
  325. BorderBrush="White" Width="400" FontSize="14"
  326. HorizontalContentAlignment="Center" VerticalAlignment="Center"
  327. Height="30" Margin="219,8,218,10" />
  328. </Grid>
  329. </Border>
  330. </Grid>
  331. </DockPanel>
  332. </Border>
  333. <Border Grid.Row="2" HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1"
  334. BorderBrush="#84a567" Height="250" Width="1120" Margin="0">
  335. <DockPanel Background="#d6f1ff">
  336. <Grid>
  337. <Grid.ColumnDefinitions>
  338. <ColumnDefinition Width="1.32*" />
  339. <ColumnDefinition Width="1.32*" />
  340. <ColumnDefinition Width="1.32*" />
  341. <ColumnDefinition Width="1.26*" />
  342. </Grid.ColumnDefinitions>
  343. <Border x:Name="Inputs" Grid.Column="0" HorizontalAlignment="Left"
  344. VerticalAlignment="Bottom"
  345. BorderThickness="1" BorderBrush="#84a567" Height="250" Width="280" Margin="0">
  346. <DockPanel Background="#d6f1ff">
  347. <Label Content="E84 Factory Inputs" HorizontalContentAlignment="Center"
  348. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" FontSize="14"/>
  349. <Grid>
  350. <Border BorderBrush="Gray" BorderThickness="1">
  351. <Grid >
  352. <Grid.ColumnDefinitions>
  353. <ColumnDefinition Width="1.9*" />
  354. <ColumnDefinition Width="*" />
  355. </Grid.ColumnDefinitions>
  356. <Grid.RowDefinitions>
  357. <RowDefinition Height="30" />
  358. <RowDefinition Height="30" />
  359. <RowDefinition Height="30" />
  360. <RowDefinition Height="30" />
  361. <RowDefinition Height="30" />
  362. <RowDefinition Height="30" />
  363. <RowDefinition Height="30" />
  364. </Grid.RowDefinitions>
  365. <Label Grid.Row="0" Content="Vaild:" FontSize="14"
  366. HorizontalContentAlignment="Right" />
  367. <controls:LED Grid.Row="0" Grid.Column="1"
  368. On="{Binding E84Data.Valid}" />
  369. <Label Grid.Row="1" Content="Transfer Request:" FontSize="14"
  370. HorizontalContentAlignment="Right" />
  371. <controls:LED Grid.Row="1" Grid.Column="1"
  372. On="{Binding E84Data.TransferRequest}" />
  373. <Label Grid.Row="2" Content="Busy:" FontSize="14"
  374. HorizontalContentAlignment="Right" />
  375. <controls:LED Grid.Row="2" Grid.Column="1"
  376. On="{Binding E84Data.Busy}" />
  377. <Label Grid.Row="3" Content="Transfer Complete :" FontSize="14"
  378. HorizontalContentAlignment="Right" />
  379. <controls:LED Grid.Row="3" Grid.Column="1"
  380. On="{Binding E84Data.TransferComplete}" />
  381. <Label Grid.Row="4" Content="CS_0:" FontSize="14"
  382. HorizontalContentAlignment="Right" />
  383. <controls:LED Grid.Row="4" Grid.Column="1"
  384. On="{Binding E84Data.CS0}" />
  385. <Label Grid.Row="5" Content="CS_1:" FontSize="14"
  386. HorizontalContentAlignment="Right" />
  387. <controls:LED Grid.Row="5" Grid.Column="1"
  388. On="False" />
  389. <Label Grid.Row="6" Content="Continuous Transfer:" FontSize="14"
  390. HorizontalContentAlignment="Right" />
  391. <controls:LED Grid.Row="6" Grid.Column="1"
  392. On="{Binding E84Data.ContinuousTransfer}" />
  393. </Grid>
  394. </Border>
  395. </Grid>
  396. </DockPanel>
  397. </Border>
  398. <Border x:Name="Outputs" Grid.Column="1" HorizontalAlignment="Left"
  399. VerticalAlignment="Bottom"
  400. BorderThickness="1" BorderBrush="#84a567" Height="250" Width="280" Margin="0">
  401. <DockPanel Background="#d6f1ff">
  402. <Label Content="E84 Factory Outputs" HorizontalContentAlignment="Center"
  403. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" FontSize="14"/>
  404. <Grid>
  405. <Grid.RowDefinitions>
  406. <RowDefinition Height="3*" />
  407. <RowDefinition Height="*" />
  408. </Grid.RowDefinitions>
  409. <Border Grid.Row="0" BorderBrush="Gray" BorderThickness="1">
  410. <Grid >
  411. <Grid.ColumnDefinitions>
  412. <ColumnDefinition Width="1.9*" />
  413. <ColumnDefinition Width="*" />
  414. </Grid.ColumnDefinitions>
  415. <Grid.RowDefinitions>
  416. <RowDefinition Height="30" />
  417. <RowDefinition Height="30" />
  418. <RowDefinition Height="30" />
  419. <RowDefinition Height="30" />
  420. <RowDefinition Height="30" />
  421. </Grid.RowDefinitions>
  422. <Label Grid.Row="0" Content="Load Request:" FontSize="14"
  423. HorizontalContentAlignment="Right" />
  424. <controls:LED Grid.Row="0" Grid.Column="1"
  425. On="{Binding E84Data.LoadRequest}" />
  426. <Label Grid.Row="1" Content="Unload Request:" FontSize="14"
  427. HorizontalContentAlignment="Right" />
  428. <controls:LED Grid.Row="1" Grid.Column="1"
  429. On="{Binding E84Data.UnloadRequest}" />
  430. <Label Grid.Row="2" Content="Ready to Transfer:" FontSize="14"
  431. HorizontalContentAlignment="Right" />
  432. <controls:LED Grid.Row="2" Grid.Column="1"
  433. On="{Binding E84Data.ReadyToTransfer}" />
  434. <Label Grid.Row="3" Content="Handoff Available:" FontSize="14"
  435. HorizontalContentAlignment="Right" />
  436. <controls:LED Grid.Row="3" Grid.Column="1"
  437. On="{Binding E84Data.HandoffAvailable}" />
  438. <Label Grid.Row="4" Content="Emergency Stop OK:" FontSize="14"
  439. HorizontalContentAlignment="Right" />
  440. <controls:LED Grid.Row="4" Grid.Column="1"
  441. On="{Binding E84Data.EmergencyOk}" />
  442. </Grid>
  443. </Border>
  444. <Border Grid.Row="1" BorderBrush="Gray" BorderThickness="1">
  445. <Grid >
  446. <CheckBox Content="Error on Placement Timeout" IsChecked="True"
  447. IsEnabled="False"
  448. VerticalAlignment="Center" HorizontalAlignment="Center"
  449. FontSize="14" />
  450. </Grid>
  451. </Border>
  452. </Grid>
  453. </DockPanel>
  454. </Border>
  455. <Border x:Name="ConfigBorder" Grid.Column="2" HorizontalAlignment="Left"
  456. VerticalAlignment="Bottom"
  457. BorderThickness="1" BorderBrush="#84a567" Height="250" Width="280" Margin="0">
  458. <DockPanel Background="#d6f1ff">
  459. <Label Content="TimeOut Settings" HorizontalContentAlignment="Center"
  460. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" FontSize="14"/>
  461. <Grid>
  462. <Border BorderBrush="Gray" BorderThickness="1">
  463. <Grid >
  464. <Grid.ColumnDefinitions>
  465. <ColumnDefinition Width="95*" />
  466. <ColumnDefinition Width="181*" />
  467. </Grid.ColumnDefinitions>
  468. <Grid.RowDefinitions>
  469. <RowDefinition Height="30" />
  470. <RowDefinition Height="30" />
  471. <RowDefinition Height="30" />
  472. <RowDefinition Height="30" />
  473. <RowDefinition Height="30" />
  474. <RowDefinition Height="30" />
  475. </Grid.RowDefinitions>
  476. <commonControl:AITScDoubleRow ScName="TP1 (sec)" Grid.Row="0"
  477. ScId="Fa.E84.TP1"
  478. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP1}"
  479. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP1}"
  480. Command="{Binding SetConfigCommand}"
  481. NameWidth="75" FeedbackWidth="70"
  482. SetPointWidth="70" CommandWidth="60"
  483. Grid.ColumnSpan="2" />
  484. <commonControl:AITScDoubleRow ScName="TP2 (sec)" Grid.Row="1"
  485. ScId="Fa.E84.TP2"
  486. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP2}"
  487. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP2}"
  488. Command="{Binding SetConfigCommand}"
  489. NameWidth="75" FeedbackWidth="70"
  490. SetPointWidth="70" CommandWidth="60"
  491. Grid.ColumnSpan="2" />
  492. <commonControl:AITScDoubleRow ScName="TP3 (sec)" Grid.Row="2"
  493. ScId="Fa.E84.TP3"
  494. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP3}"
  495. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP3}"
  496. Command="{Binding SetConfigCommand}"
  497. NameWidth="75" FeedbackWidth="70"
  498. SetPointWidth="70" CommandWidth="60"
  499. Grid.ColumnSpan="2" />
  500. <commonControl:AITScDoubleRow ScName="TP4(sec)" Grid.Row="3"
  501. ScId="Fa.E84.TP4"
  502. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP4}"
  503. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP4}"
  504. Command="{Binding SetConfigCommand}"
  505. NameWidth="75" FeedbackWidth="70"
  506. SetPointWidth="70" CommandWidth="60"
  507. Grid.ColumnSpan="2" />
  508. <commonControl:AITScDoubleRow ScName="TP5(sec)" Grid.Row="4"
  509. ScId="Fa.E84.TP5"
  510. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP5}"
  511. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP5}"
  512. Command="{Binding SetConfigCommand}"
  513. NameWidth="75" FeedbackWidth="70"
  514. SetPointWidth="70" CommandWidth="60"
  515. Grid.ColumnSpan="2" />
  516. <commonControl:AITScDoubleRow ScName="TP6(sec)" Grid.Row="5"
  517. ScId="Fa.E84.TP6"
  518. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP6}"
  519. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP6}"
  520. Command="{Binding SetConfigCommand}"
  521. NameWidth="75" FeedbackWidth="70"
  522. SetPointWidth="70" CommandWidth="60"
  523. Grid.ColumnSpan="2" />
  524. </Grid>
  525. </Border>
  526. </Grid>
  527. </DockPanel>
  528. </Border>
  529. <Border Grid.Column="3" HorizontalAlignment="Left" VerticalAlignment="Bottom"
  530. BorderThickness="1" BorderBrush="#84a567" Height="250" Width="272" Margin="0">
  531. <DockPanel Background="#d6f1ff">
  532. <Label Content="Error Recovery" HorizontalContentAlignment="Center"
  533. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" FontSize="14"/>
  534. <Grid>
  535. <Grid.RowDefinitions>
  536. <RowDefinition Height="2*" />
  537. <RowDefinition Height="*" />
  538. <RowDefinition Height="*" />
  539. <RowDefinition Height="*" />
  540. </Grid.RowDefinitions>
  541. <Button Content="Retry" x:Name="btnRetry" Grid.Row="1" FontSize="14"
  542. Width="100" Height="30" VerticalAlignment="Center"
  543. Command="{Binding E84Command}"
  544. CommandParameter="E84Retry" />
  545. <Button Content="Complete" x:Name="btnComplete" Grid.Row="2" FontSize="14"
  546. Width="100" Height="30" VerticalAlignment="Center"
  547. Command="{Binding E84Command}"
  548. CommandParameter="E84Complete" />
  549. <Border Grid.Row="3" BorderBrush="Gray" BorderThickness="1">
  550. <Grid >
  551. <CheckBox Content="Error on access mode violation"
  552. IsChecked="False" VerticalAlignment="Center"
  553. HorizontalAlignment="Center" FontSize="14"
  554. IsEnabled="False" />
  555. </Grid>
  556. </Border>
  557. </Grid>
  558. </DockPanel>
  559. </Border>
  560. </Grid>
  561. </DockPanel>
  562. </Border>
  563. </Grid>
  564. </DockPanel>
  565. </Border>
  566. </Grid>
  567. </UserControl>