NewE84Info.xaml 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753
  1. <UserControl x:Class="EfemUI.Controls.NewE84Info"
  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:ctrlCommon="clr-namespace:Aitex.Sorter.UI.Controls.Common;assembly=Aitex.Sorter.UI"
  7. xmlns:controls="clr-namespace:Aitex.Sorter.UI.Controls;assembly=Aitex.Sorter.UI"
  8. xmlns:Common="clr-namespace:Aitex.Sorter.Common;assembly=Aitex.Sorter.Common"
  9. xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
  10. mc:Ignorable="d" x:Name="self"
  11. d:DesignHeight="810" Width="2000">
  12. <UserControl.Resources>
  13. <Style TargetType="{x:Type Button}">
  14. <Setter Property="Template" Value="{StaticResource realism_button}" />
  15. </Style>
  16. </UserControl.Resources>
  17. <Grid x:Name="root">
  18. <Border HorizontalAlignment="Left" VerticalAlignment="Top" BorderThickness="1" BorderBrush="#84a567"
  19. Height="810" Width="1909" Margin="0,0,-309,0" >
  20. <DockPanel Background="#d6f1ff" Margin="9,0,0,0">
  21. <Grid>
  22. <Grid.RowDefinitions>
  23. <RowDefinition Height="400" />
  24. <RowDefinition Height="80" />
  25. <RowDefinition Height="310" />
  26. </Grid.RowDefinitions>
  27. <Border Grid.Row="0" HorizontalAlignment="Left" VerticalAlignment="Top" BorderThickness="1" Margin="0,10,0,0"
  28. BorderBrush="#84a567" Height="380" Width="1610">
  29. <DockPanel Background="#d6f1ff">
  30. <Grid>
  31. <Grid.ColumnDefinitions>
  32. <ColumnDefinition Width="665" />
  33. <ColumnDefinition Width="450" />
  34. <ColumnDefinition Width="*" />
  35. </Grid.ColumnDefinitions>
  36. <Border x:Name="LpBorder" Grid.Column="0" HorizontalAlignment="Left"
  37. VerticalAlignment="Top" BorderThickness="0" BorderBrush="Gray"
  38. Height="400" Width="650" Margin="10,0,0,0">
  39. <controls:HeaderPanel Header="Load Port Status" Width="650" >
  40. <Grid>
  41. <Grid.RowDefinitions>
  42. <RowDefinition Height="*" />
  43. <RowDefinition Height="7*" />
  44. </Grid.RowDefinitions>
  45. <StackPanel Grid.Row="0" Grid.ColumnSpan="2" Orientation="Horizontal" VerticalAlignment="Center">
  46. <StackPanel.Resources>
  47. <Style TargetType="Label">
  48. <Setter Property="Margin" Value="0,0,0,0" />
  49. </Style>
  50. </StackPanel.Resources>
  51. <ctrlCommon:LED On="{Binding E84Data.IndicatiorLoad,Converter={StaticResource IndicatorStateToBoolConverter}}" Margin="6,0,0,0"/>
  52. <Label Grid.Row="0" Grid.Column="1" Content="Load" FontSize="15"/>
  53. <ctrlCommon:LED On="{Binding E84Data.IndicatiorUnload,Converter={StaticResource IndicatorStateToBoolConverter}}" Margin="3,0,0,0"/>
  54. <Label Content="Unload" FontSize="15"/>
  55. <ctrlCommon:LED On="{Binding E84Data.IndicatiorAccessManual,Converter={StaticResource IndicatorStateToBoolConverter}}" Margin="3,0,0,0"/>
  56. <Label Content="Manual" FontSize="15"/>
  57. <ctrlCommon:LED On="{Binding E84Data.IndicatiorPresence,Converter={StaticResource IndicatorStateToBoolConverter}}" Margin="3,0,0,0"/>
  58. <Label Grid.Row="2" Grid.Column="1" Content="Presence" FontSize="15"/>
  59. <ctrlCommon:LED On="{Binding E84Data.IndicatiorPlacement,Converter={StaticResource IndicatorStateToBoolConverter}}" Margin="3,0,0,0"/>
  60. <Label Grid.Row="4" Grid.Column="1" Content="Placement" FontSize="15"/>
  61. <ctrlCommon:LED On="{Binding E84Data.IndicatiorAccessAuto,Converter={StaticResource IndicatorStateToBoolConverter}}" Margin="3,0,0,0"/>
  62. <Label Content="Auto" FontSize="15"/>
  63. <ctrlCommon:LED On="{Binding E84Data.IndicatiorStatus1,Converter={StaticResource IndicatorStateToBoolConverter}}" Margin="3,0,0,0"/>
  64. <Label Content="Reserve" FontSize="15"/>
  65. <ctrlCommon:LED IsRed="True" On="{Binding E84Data.IndicatiorAlarm,Converter={StaticResource IndicatorStateToBoolConverter}}" Margin="3,0,0,0"/>
  66. <Label Grid.Row="0" Grid.Column="1" Content="Alarm" FontSize="15"/>
  67. </StackPanel>
  68. <Border Grid.Row="1" >
  69. <Grid ctrlCommon:GridHelper.Column0="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column1="Transparent"
  70. ctrlCommon:GridHelper.Column2="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column3="Transparent">
  71. <Grid.ColumnDefinitions>
  72. <ColumnDefinition Width="150*" />
  73. <ColumnDefinition Width="170*"/>
  74. <ColumnDefinition Width="150*" />
  75. <ColumnDefinition Width="170*" />
  76. </Grid.ColumnDefinitions>
  77. <Grid.RowDefinitions>
  78. <RowDefinition Height="27" />
  79. <RowDefinition Height="27" />
  80. <RowDefinition Height="27" />
  81. <RowDefinition Height="27" />
  82. <RowDefinition Height="27" />
  83. <RowDefinition Height="27" />
  84. <RowDefinition Height="27" />
  85. <RowDefinition Height="27" />
  86. <RowDefinition Height="27" />
  87. <RowDefinition Height="90*" />
  88. </Grid.RowDefinitions>
  89. <Label Grid.Row="0" Grid.Column="0" Content="System Status" FontSize="15"
  90. HorizontalContentAlignment="Left" />
  91. <Label Grid.Row="0" Grid.Column="1" Content="{Binding E84Data.SystemStatus}" FontSize="15"
  92. HorizontalContentAlignment="Left" />
  93. <Label Grid.Row="1" Grid.Column="0" Content="Mode"
  94. FontSize="15"
  95. HorizontalContentAlignment="Left" />
  96. <Label Grid.Row="1" Content="{Binding E84Data.Mode}" Grid.Column="1" FontSize="15"
  97. HorizontalContentAlignment="Left" />
  98. <Label Grid.Row="2" Grid.Column="0" Content="Initial Pos.Mov"
  99. FontSize="15"
  100. HorizontalContentAlignment="Left" />
  101. <Label Grid.Row="2" Content="{Binding E84Data.InitPosMovement}" Grid.Column="1" FontSize="15"
  102. HorizontalContentAlignment="Left" />
  103. <Label Grid.Row="3" Grid.Column="0" Content="Operation Status"
  104. FontSize="15"
  105. HorizontalContentAlignment="Left" />
  106. <Label Grid.Row="3" Content="{Binding E84Data.OperationStatus}" Grid.Column="1" FontSize="15"
  107. HorizontalContentAlignment="Left" />
  108. <Label Grid.Row="4" Grid.Column="0" Content="Error Code"
  109. FontSize="15"
  110. HorizontalContentAlignment="Left" />
  111. <Label Grid.Row="4" Content="{Binding E84Data.ErrorCode}" Grid.Column="1" FontSize="15"
  112. HorizontalContentAlignment="Left" />
  113. <Label Grid.Row="5" Grid.Column="0" Content="Container Status"
  114. FontSize="15"
  115. HorizontalContentAlignment="Left" />
  116. <Label Grid.Row="5" Content="{Binding E84Data.ContainerStatus}" Grid.Column="1" FontSize="15"
  117. HorizontalContentAlignment="Left"/>
  118. <Label Grid.Row="6" Grid.Column="0" Content="Clamp Postion"
  119. FontSize="15"
  120. HorizontalContentAlignment="Left" />
  121. <Label Grid.Row="6" Content="{Binding E84Data.ClampPosition}" Grid.Column="1" FontSize="15"
  122. HorizontalContentAlignment="Left"/>
  123. <Label Grid.Row="7" Grid.Column="0" Content="Latch Postion"
  124. FontSize="15"
  125. HorizontalContentAlignment="Left" />
  126. <Label Grid.Row="7" Content="{Binding E84Data.LPDoorLatchPosition}" Grid.Column="1" FontSize="15"
  127. HorizontalContentAlignment="Left"/>
  128. <Label Grid.Row="8" Grid.Column="0" Content="Vacuum Status"
  129. FontSize="15"
  130. HorizontalContentAlignment="Left"/>
  131. <Label Grid.Row="8" Content="{Binding E84Data.VacuumStatus}" Grid.Column="1" FontSize="15"
  132. HorizontalContentAlignment="Left"/>
  133. <Label Grid.Row="0" Grid.Column="2" Content="Door Position" FontSize="15"
  134. HorizontalContentAlignment="Left" />
  135. <Label Grid.Row="0" Content="{Binding E84Data.LPDoorState}" Grid.Column="3" FontSize="15"
  136. HorizontalContentAlignment="Left" />
  137. <Label Grid.Row="1" Grid.Column="2" Content="Wafer Protruision" FontSize="15"
  138. HorizontalContentAlignment="Left" />
  139. <Label Grid.Row="1" Content="{Binding E84Data.WaferProtrusion}" Grid.Column="3" FontSize="15"
  140. HorizontalContentAlignment="Left" />
  141. <Label Grid.Row="2" Grid.Column="2" Content="Elevator Axis" FontSize="15"
  142. HorizontalContentAlignment="Left" />
  143. <Label Grid.Row="2" Content="{Binding E84Data.ElevatorAxisPosition}" Grid.Column="3" FontSize="15"
  144. HorizontalContentAlignment="Left"/>
  145. <Label Grid.Row="3" Grid.Column="2" Content="Dock Position" FontSize="15"
  146. HorizontalContentAlignment="Left" />
  147. <Label Grid.Row="3" Content="{Binding E84Data.DockPosition}" Grid.Column="3" FontSize="15"
  148. HorizontalContentAlignment="Left"/>
  149. <Label Grid.Row="4" Grid.Column="2" Content="Map Position" FontSize="15"
  150. HorizontalContentAlignment="Left" />
  151. <Label Grid.Row="4" Content="{Binding E84Data.MapperPostion}" Grid.Column="3" FontSize="15"
  152. HorizontalContentAlignment="Left" />
  153. <Label Grid.Row="5" Grid.Column="2" Content="Map Status" FontSize="15"
  154. HorizontalContentAlignment="Left" />
  155. <Label Grid.Row="5" Content="{Binding E84Data.MappingStatus}" Grid.Column="3" FontSize="15"
  156. HorizontalContentAlignment="Left"/>
  157. <Label Grid.Row="6" Grid.Column="2" Content="Model" FontSize="15"
  158. HorizontalContentAlignment="Left"/>
  159. <Label Grid.Row="6" Content="{Binding E84Data.Model}" Grid.Column="3" FontSize="15"
  160. HorizontalContentAlignment="Left"/>
  161. <Label Grid.Row="7" Grid.Column="2" Content="Fosb Mode" FontSize="15"
  162. HorizontalContentAlignment="Left" />
  163. <Label Grid.Row="7" Content="{Binding E84Data.IsFosbModeActual}" Grid.Column="3" FontSize="15"
  164. HorizontalContentAlignment="Left" />
  165. <Label Grid.Row="8" Grid.Column="2" Content="State Machine" FontSize="15"
  166. HorizontalContentAlignment="Left"/>
  167. <Label Grid.Row="8" Content="{Binding E84Data.SMStatus}" Grid.Column="3" FontSize="15"
  168. HorizontalContentAlignment="Left"/>
  169. <StackPanel Orientation="Vertical" Grid.Row="9" Grid.Column="0" Grid.ColumnSpan="4" VerticalAlignment="Top" HorizontalAlignment="Center" TextBlock.Foreground="White" Height="71" ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="LightBlue" ctrlCommon:GridHelper.Column2="Transparent" Width="634">
  170. <StackPanel Grid.Row="0" Grid.Column="0" Orientation="Horizontal" Width="635" Height="35" Margin="0,0,0,0" >
  171. <Label Content="Command Option:" FontSize="15" HorizontalContentAlignment="Left" Width="138" Height="30"/>
  172. <ComboBox x:Name="cboCmdOption" ItemsSource="{Binding LPCommandList}" FontSize="12" Width="361" Margin="5,3,5,3"/>
  173. <Button Content="Execute Command" FontSize="12"
  174. Command="{Binding DeviceExecuteMoveCommand}"
  175. CommandParameter="{Binding Text,ElementName=cboCmdOption}"
  176. Height="30" Margin="0,0,0,0" Width="127" IsEnabled="True"/>
  177. </StackPanel>
  178. <StackPanel Grid.Row="1" Grid.Column="0" Orientation="Horizontal" Width="635" Height="35" Margin="0,0,-1,0" >
  179. <Button Content="Load" FontSize="12" Command="{Binding DeviceOperationCommand}"
  180. CommandParameter="LoadportLoad"
  181. Height="30" Margin="0,0,0,0" Width="64" />
  182. <Button Content="Unload" FontSize="12" Command="{Binding DeviceOperationCommand}"
  183. CommandParameter="LoadportUnload"
  184. Height="30" Margin="3,0,0,0" Width="64" />
  185. <Button Content="Home" FontSize="12" Command="{Binding DeviceOperationCommand}"
  186. CommandParameter="LoadportHome"
  187. Height="30" Margin="3,0,0,0" Width="64" />
  188. <Button Content="Reset" FontSize="12" Command="{Binding DeviceOperationCommand}"
  189. CommandParameter="LoadportReset"
  190. Height="30" Margin="3,0,0,0" Width="64" />
  191. <Button Content="Stop" FontSize="12" Command="{Binding DeviceOperationCommand}"
  192. CommandParameter="LoadportStop" Height="30" Margin="3,0,0,0" Width="64" />
  193. <Button Content="Force Home" FontSize="12" Command="{Binding DeviceExecuteMoveCommand}"
  194. CommandParameter="(ABORG)"
  195. Height="30" Margin="3,0,0,0" Width="80" />
  196. <Button Content="Read Status" FontSize="12" Command="{Binding DeviceExecuteGetCommand}"
  197. CommandParameter="(STATE)" Height="30" Margin="3,0,0,0" Width="80" />
  198. <Button Content="Fosb ON" FontSize="12" Command="{Binding DeviceExecuteSetCommand}"
  199. CommandParameter="(FSBON)" Height="30" Margin="3,0,0,0" Width="66" />
  200. <Button Content="Fosb Off" FontSize="12" Command="{Binding DeviceExecuteSetCommand}"
  201. CommandParameter="(FSBOFF)" Height="30" Margin="3,0,0,0" Width="66" />
  202. </StackPanel>
  203. </StackPanel>
  204. </Grid>
  205. </Border>
  206. </Grid>
  207. </controls:HeaderPanel>
  208. </Border>
  209. <Border Grid.Column="1" HorizontalAlignment="Left" VerticalAlignment="Bottom"
  210. BorderThickness="1" BorderBrush="Gray" Height="378" Width="440" Margin="5,0,5,0">
  211. <DockPanel Background="{StaticResource Table_BG_Content}">
  212. <controls:HeaderPanel Header="E87 Status" Width="440">
  213. <Grid Height="338">
  214. <Grid ctrlCommon:GridHelper.Column0="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column1="Transparent" Margin="0,0,0,0">
  215. <Grid.ColumnDefinitions>
  216. <ColumnDefinition Width="80*" />
  217. <ColumnDefinition Width="99*" />
  218. </Grid.ColumnDefinitions>
  219. <Grid.RowDefinitions>
  220. <RowDefinition Height="38" />
  221. <RowDefinition Height="38" />
  222. <RowDefinition Height="38" />
  223. <RowDefinition Height="38" />
  224. <RowDefinition Height="38" />
  225. <RowDefinition Height="38" />
  226. <RowDefinition Height="38" />
  227. <RowDefinition Height="38" />
  228. <RowDefinition Height="38" />
  229. </Grid.RowDefinitions>
  230. <Label Grid.Row="0" Content="Port Reserved :" FontSize="15"
  231. HorizontalContentAlignment="Left" />
  232. <ctrlCommon:LED Grid.Row="0" Grid.Column="1"
  233. On="{Binding E84Data.PodReserved}" Margin="5,0,0,0" Height="36" VerticalAlignment="Top" />
  234. <Label Grid.Row="1" Content="Port State :" FontSize="15"
  235. HorizontalContentAlignment="Left"
  236. VerticalAlignment="Center" Height="30" Margin="0,4" />
  237. <Label Content="{Binding E84Data.PortState}" Grid.Row="1"
  238. Grid.Column="1"
  239. FontSize="15" HorizontalContentAlignment="Center"
  240. VerticalAlignment="Center" Margin="5,4,0,4" Height="30" />
  241. <Label Grid.Row="2" Content="Carrier ID :"
  242. HorizontalContentAlignment="Left" FontSize="15"
  243. VerticalAlignment="Center" Height="30" Margin="0,4" />
  244. <Label Content="{Binding E84Data.CarrierID}" Grid.Row="2"
  245. Grid.Column="1" FontSize="15" Height="30"
  246. HorizontalContentAlignment="Center"
  247. VerticalAlignment="Center" Margin="5,4,0,4" />
  248. <Label Grid.Row="3" Content="Slot Map :"
  249. HorizontalContentAlignment="Left" FontSize="15"
  250. VerticalAlignment="Center" Height="30" Margin="0,4" />
  251. <Label Content="{Binding E84Data.SlotMap}" Grid.Row="3"
  252. Grid.Column="1" FontSize="15"
  253. HorizontalContentAlignment="Center"
  254. VerticalAlignment="Center" Height="32" Margin="5,4,0,2" />
  255. <Label Grid.Row="4" Content="Access Mode :"
  256. HorizontalContentAlignment="Left" FontSize="15"
  257. VerticalAlignment="Center" Height="30" Margin="0,4" />
  258. <Label Content="{Binding E84Data.AccessMode}" Grid.Row="4"
  259. Grid.Column="1" FontSize="15" Height="32"
  260. HorizontalContentAlignment="Center"
  261. VerticalAlignment="Center" Margin="5,4,0,2" />
  262. <Label Grid.Row="5" Content="Access Status :"
  263. HorizontalContentAlignment="Left" FontSize="15"
  264. VerticalAlignment="Center" Height="30" Margin="0,4" />
  265. <Label Content="{Binding E84Data.AccessStatus}" Grid.Row="5"
  266. Grid.Column="1" FontSize="15" Height="32"
  267. HorizontalContentAlignment="Center"
  268. VerticalAlignment="Center" Margin="5,4,0,2" />
  269. <Label Grid.Row="6" Grid.Column =" 0" Content="Carrier ID Status :"
  270. HorizontalContentAlignment="Left" FontSize="15"
  271. VerticalAlignment="Center" Grid.ColumnSpan="1" Margin="0,8,0,0" Height="30" />
  272. <Label Content="{Binding E84Data.CarrierIDStatus}" Grid.Row="6"
  273. Grid.Column="1" FontSize="15" Height="34"
  274. HorizontalContentAlignment="Center"
  275. VerticalAlignment="Center" Margin="5,2,0,2" Grid.ColumnSpan="1" />
  276. <Label Grid.Row="7" Content="Slot Map Status :"
  277. HorizontalContentAlignment="Left" FontSize="15"
  278. VerticalAlignment="Center" Grid.Column="0" Margin="0,8,0,0" Height="30" />
  279. <Label Content="{Binding E84Data.SlotMapStatus}" Grid.Row="7"
  280. Grid.Column="1" FontSize="15" Height="36"
  281. HorizontalContentAlignment="Center"
  282. VerticalAlignment="Center" Margin="5,2,0,0" />
  283. <StackPanel Orientation="Horizontal" Grid.Row="8" Grid.Column="0" Grid.ColumnSpan="2" VerticalAlignment="Center" HorizontalAlignment="Center" TextBlock.Foreground="White" Height="29" ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="LightBlue" ctrlCommon:GridHelper.Column2="Transparent" Width="426">
  284. <!--{Binding E84Data.AccessMode,Mode=OneTime,Converter={StaticResource E84AccessModeToBoolConverter}}-->
  285. <Button FontSize="12" Height="25" Margin="2,0,0,0" Width="68" x:Name="SetAMHS" Content="SetAMHS" Command="{Binding E84Command}" CommandParameter="SetAMHS"/>
  286. <Button FontSize="12" Height="25" Margin="3,0,0,0" Width="68" x:Name="SetManual" Content="SetManual" Command="{Binding E84Command}" CommandParameter="SetManual"/>
  287. <Button FontSize="12" Height="25" Margin="3,0,0,0" Width="68" x:Name="InService" Content="InService" Command="{Binding E84Command}" CommandParameter="SetInService"/>
  288. <Button FontSize="12" Height="25" Margin="3,0,0,0" Width="68" x:Name="OutService" Content="OutService" Command="{Binding E84Command}" CommandParameter="SetOutService"/>
  289. <Button FontSize="12" Height="25" Margin="3,0,0,0" Width="68" x:Name="Proceed" Content="Proceed" Command="{Binding FALoadPortCommand}" CommandParameter="ProceedWithCarrier"/>
  290. <Button FontSize="12" Height="25" Margin="3,0,0,0" Width="68" x:Name="Cancel" Content="Cancel" Command="{Binding FALoadPortCommand}" CommandParameter="CancelCarrier"/>
  291. <!--<CheckBox x:Name="AutomaticMode" Content="Automatic Mode" IsChecked="False"
  292. VerticalAlignment="Center" HorizontalAlignment="Left"
  293. FontSize="16" Margin="0,2" Height="25" Width="235" Grid.ColumnSpan="2">
  294. <i:Interaction.Triggers>
  295. <i:EventTrigger EventName="Checked">
  296. <i:InvokeCommandAction Command="{Binding E84Command}"
  297. CommandParameter="SetAMHS" />
  298. </i:EventTrigger>
  299. <i:EventTrigger EventName="Unchecked">
  300. <i:InvokeCommandAction Command="{Binding E84Command}"
  301. CommandParameter="SetManual" />
  302. </i:EventTrigger>
  303. </i:Interaction.Triggers>
  304. </CheckBox>
  305. <CheckBox x:Name="InService" Content="In Service" IsChecked="false"
  306. VerticalAlignment="Center" HorizontalAlignment="Left"
  307. FontSize="16" Margin="0,2" Height="25" Width="180" Grid.Column="1">
  308. <i:Interaction.Triggers>
  309. <i:EventTrigger EventName="Checked">
  310. <i:InvokeCommandAction Command="{Binding E84Command}"
  311. CommandParameter="SetInService" />
  312. </i:EventTrigger>
  313. <i:EventTrigger EventName="Unchecked">
  314. <i:InvokeCommandAction Command="{Binding E84Command}"
  315. CommandParameter="SetOutService" />
  316. </i:EventTrigger>
  317. </i:Interaction.Triggers>
  318. </CheckBox>-->
  319. </StackPanel>
  320. </Grid>
  321. </Grid>
  322. </controls:HeaderPanel>
  323. </DockPanel>
  324. </Border>
  325. <Border x:Name="ConfigBorder1" Grid.Column="2" HorizontalAlignment="Left" VerticalAlignment="Bottom"
  326. BorderThickness="1" BorderBrush="#84a567" Height="378" Width="488" Margin="2,0,0,0">
  327. <DockPanel Background="{StaticResource Table_BG_Content}" Margin="9,0,-1,0">
  328. <controls:HeaderPanel Header="Carrier ID Reader" Width="480">
  329. <Grid>
  330. <Grid ctrlCommon:GridHelper.Column0="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column1="Transparent">
  331. <Grid.ColumnDefinitions>
  332. <ColumnDefinition Width="183*"/>
  333. <ColumnDefinition Width="206*"/>
  334. </Grid.ColumnDefinitions>
  335. <Grid.RowDefinitions>
  336. <RowDefinition Height="45" />
  337. <RowDefinition Height="45" />
  338. <RowDefinition Height="45" />
  339. <RowDefinition Height="45" />
  340. <RowDefinition Height="45" />
  341. <RowDefinition Height="35" />
  342. <RowDefinition Height="30" />
  343. <RowDefinition Height="30" />
  344. </Grid.RowDefinitions>
  345. <controls:AITScBoolRow Name="PLInService" ScName="In Service" Grid.Row="0"
  346. Grid.ColumnSpan="2"
  347. ScId="LoadPort.LoadPort1CarrierIdReaderInUse"
  348. ScFeedback="True"
  349. ScSetPoint="True"
  350. Command=""
  351. NameWidth="185" FeedbackWidth="90"
  352. SetPointWidth="90" CommandWidth="110" IsEnabled="True"/>
  353. <controls:AITScDoubleRow Name="PLDataReadSize" ScName="Data Read Size" Grid.Row="1"
  354. Grid.ColumnSpan="2"
  355. ScId="LoadPort.DataReadSize"
  356. ScFeedback="{Binding ConfigFeedback.LoadPort_DataReadSize}"
  357. ScSetPoint="{Binding ConfigSetPoint.LoadPort_DataReadSize}"
  358. Command="{Binding SetConfigCommand}"
  359. NameWidth="185" FeedbackWidth="90"
  360. SetPointWidth="90" CommandWidth="110" />
  361. <controls:AITScDoubleRow Name="PLStartPage" ScName="Start Page" Grid.Row="2"
  362. Grid.ColumnSpan="2"
  363. ScId="LoadPort.StartPage"
  364. ScFeedback="{Binding ConfigFeedback.LoadPort_StartPage}"
  365. ScSetPoint="{Binding ConfigSetPoint.LoadPort_StartPage}"
  366. Command="{Binding SetConfigCommand}"
  367. NameWidth="185" FeedbackWidth="90"
  368. SetPointWidth="90" CommandWidth="110" />
  369. <controls:AITScBoolRow Name="PLEnableAutoCarrierIdRead" ScName="Auto Read" Grid.Row="3"
  370. Grid.ColumnSpan="2"
  371. ScId="LoadPort.EnableAutoCarrierIdRead"
  372. ScFeedback="{Binding ConfigFeedback.LoadPort_EnableAutoCarrierIdRead}"
  373. ScSetPoint="{Binding ConfigSetPoint.LoadPort_EnableAutoCarrierIdRead}"
  374. Command="{Binding SetConfigCommand}"
  375. NameWidth="185" FeedbackWidth="90"
  376. SetPointWidth="90" CommandWidth="110" />
  377. <controls:AITScDoubleRow Name="PLDefaultPage" ScName="Default Page" Grid.Row="4"
  378. Grid.ColumnSpan="2"
  379. ScId="LoadPort.DefaultPage"
  380. ScFeedback="{Binding ConfigFeedback.LoadPort_DefaultPage}"
  381. ScSetPoint="{Binding ConfigSetPoint.LoadPort_DefaultPage}"
  382. Command="{Binding SetConfigCommand}"
  383. NameWidth="185" FeedbackWidth="90"
  384. SetPointWidth="90" CommandWidth="110" />
  385. <StackPanel Grid.Row="5" Grid.Column="0" Orientation="Horizontal" Margin="0,5,0,0" Grid.ColumnSpan="2" >
  386. <Label Content="CarrierID Reader Option:" FontSize="15" HorizontalContentAlignment="Left" Width="208" />
  387. <ComboBox Margin="5,0,0,0" x:Name="cboCarrierIDOption" FontSize="15" ItemsSource="{Binding RobotArmSelected}" Width="260">
  388. <ComboBoxItem Content="0"></ComboBoxItem>
  389. <ComboBoxItem Content="1"></ComboBoxItem>
  390. <ComboBoxItem Content="2"></ComboBoxItem>
  391. </ComboBox>
  392. </StackPanel>
  393. <StackPanel Grid.Row="6" Grid.Column="0" Orientation="Horizontal" Margin="5,0,0,0" Grid.ColumnSpan="2" >
  394. <Button x:Name="BtnReadCarrierID" Content="Read" FontSize="12" Command="{Binding DeviceOperationCommand}" Height="25" Margin="0,0,0,0" Width="83" />
  395. <TextBox x:Name="txtReadCarrierID" Text="{Binding E84Data.CarrierID}" IsEnabled="True" Margin="5,2" Width="380" Height="25"/>
  396. </StackPanel>
  397. <StackPanel Grid.Row="7" Grid.Column="0" Orientation="Horizontal" Margin="5,0,0,0" Grid.ColumnSpan="2" >
  398. <Button x:Name="BtnWriteCarrierID" Content="Write" FontSize="12" Command="{Binding DeviceOperationCommand}" Height="28" Margin="0,0,0,0" Width="83" />
  399. <TextBox x:Name="txtWriteCarrierID" IsEnabled="True" Margin="5,2" Width="380" Height="25"/>
  400. </StackPanel>
  401. </Grid>
  402. </Grid>
  403. </controls:HeaderPanel>
  404. </DockPanel>
  405. </Border>
  406. </Grid>
  407. </DockPanel>
  408. </Border>
  409. <Border Grid.Row="1" HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1"
  410. BorderBrush="#84a567" Height="80" Width="1600" Margin="10,0,0,6">
  411. <DockPanel Background="{StaticResource Table_BG_Content}" HorizontalAlignment="Left" Width="1600">
  412. <!--<Label Content="E84 Status Monitor" HorizontalContentAlignment="Center"
  413. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />-->
  414. <controls:HeaderPanel Header="E84 Status Monitor" Width="1610">
  415. <Grid>
  416. <Grid.ColumnDefinitions>
  417. <ColumnDefinition Width="94*"/>
  418. <ColumnDefinition Width="535*"/>
  419. <ColumnDefinition Width="108*"/>
  420. <ColumnDefinition Width="52*"/>
  421. </Grid.ColumnDefinitions>
  422. <Border BorderBrush="Gray" BorderThickness="1" Grid.ColumnSpan="4">
  423. <Grid ctrlCommon:GridHelper.Column0="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column1="Transparent">
  424. <Grid.ColumnDefinitions>
  425. <ColumnDefinition Width="*" />
  426. <ColumnDefinition Width="3*" />
  427. </Grid.ColumnDefinitions>
  428. <Label Grid.Row="1" Content="Status :" FontSize="18"
  429. HorizontalContentAlignment="Right" VerticalAlignment="Center" />
  430. <Label Content="{Binding E84Data.E84State}" Grid.Column="1"
  431. BorderThickness="2"
  432. BorderBrush="White" Width="400" FontSize="18"
  433. HorizontalContentAlignment="Center" VerticalAlignment="Center" Height="39" Margin="219,0,218,0" />
  434. </Grid>
  435. </Border>
  436. </Grid>
  437. </controls:HeaderPanel>
  438. </DockPanel>
  439. </Border>
  440. <Border Grid.Row="2" HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1"
  441. BorderBrush="#84a567" Height="305" Width="1610" Margin="0,0,0,2" >
  442. <DockPanel Background="#d6f1ff" Margin="0,0,0,0">
  443. <Grid>
  444. <Grid.ColumnDefinitions>
  445. <ColumnDefinition Width="335" />
  446. <ColumnDefinition Width="335" />
  447. <ColumnDefinition Width="505" />
  448. <ColumnDefinition Width="442" />
  449. </Grid.ColumnDefinitions>
  450. <Border x:Name="Inputs" Grid.Column="0" HorizontalAlignment="Left"
  451. VerticalAlignment="Top"
  452. BorderThickness="1" BorderBrush="#84a567" Height="265" Width="310" Margin="10,0,5,0">
  453. <DockPanel Background="{StaticResource Table_BG_Content}">
  454. <controls:HeaderPanel Header="E84 Factory Inputs" Width="310">
  455. <Grid>
  456. <Border BorderBrush="Gray" BorderThickness="1">
  457. <Grid ctrlCommon:GridHelper.Column0="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column1="Transparent">
  458. <Grid.ColumnDefinitions>
  459. <ColumnDefinition Width="1.9*" />
  460. <ColumnDefinition Width="*" />
  461. </Grid.ColumnDefinitions>
  462. <Grid.RowDefinitions>
  463. <RowDefinition Height="32" />
  464. <RowDefinition Height="32" />
  465. <RowDefinition Height="32" />
  466. <RowDefinition Height="32" />
  467. <RowDefinition Height="32" />
  468. <RowDefinition Height="32" />
  469. <RowDefinition Height="32" />
  470. </Grid.RowDefinitions>
  471. <Label Grid.Row="0" Content="Vaild :" FontSize="18"
  472. HorizontalContentAlignment="Right" />
  473. <ctrlCommon:LED Grid.Row="0" Grid.Column="1"
  474. On="{Binding E84Data.Valid}" />
  475. <Label Grid.Row="1" Content="Transfer Request :" FontSize="18"
  476. HorizontalContentAlignment="Right" />
  477. <ctrlCommon:LED Grid.Row="1" Grid.Column="1"
  478. On="{Binding E84Data.TransferRequest}" />
  479. <Label Grid.Row="2" Content="Busy :" FontSize="18"
  480. HorizontalContentAlignment="Right" />
  481. <ctrlCommon:LED Grid.Row="2" Grid.Column="1"
  482. On="{Binding E84Data.Busy}" />
  483. <Label Grid.Row="3" Content="Transfer Complete :" FontSize="18"
  484. HorizontalContentAlignment="Right" />
  485. <ctrlCommon:LED Grid.Row="3" Grid.Column="1"
  486. On="{Binding E84Data.TransferComplete}" />
  487. <Label Grid.Row="4" Content="CS_0 :" FontSize="18"
  488. HorizontalContentAlignment="Right" />
  489. <ctrlCommon:LED Grid.Row="4" Grid.Column="1"
  490. On="{Binding E84Data.CS0}" />
  491. <Label Grid.Row="5" Content="CS_1 :" FontSize="18"
  492. HorizontalContentAlignment="Right" />
  493. <ctrlCommon:LED Grid.Row="5" Grid.Column="1"
  494. On="False" />
  495. <Label Grid.Row="6" Content="Continuous Transfer :" FontSize="18"
  496. HorizontalContentAlignment="Right" />
  497. <ctrlCommon:LED Grid.Row="6" Grid.Column="1"
  498. On="{Binding E84Data.ContinuousTransfer}" />
  499. </Grid>
  500. </Border>
  501. </Grid>
  502. </controls:HeaderPanel>
  503. </DockPanel>
  504. </Border>
  505. <Border x:Name="Outputs" Grid.Column="1" HorizontalAlignment="Left"
  506. VerticalAlignment="Top"
  507. BorderThickness="1" BorderBrush="#84a567" Height="265" Width="310" Margin="5,0,5,0">
  508. <DockPanel Background="{StaticResource Table_BG_Content}">
  509. <!--<Label Content="E84 Factory Outputs" HorizontalContentAlignment="Center"
  510. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />-->
  511. <controls:HeaderPanel Header="E84 Factory Outputs" Width="310">
  512. <Grid>
  513. <Grid.RowDefinitions>
  514. <RowDefinition Height="3*" />
  515. <RowDefinition Height="65" />
  516. </Grid.RowDefinitions>
  517. <Border Grid.Row="0" BorderBrush="Gray" BorderThickness="1">
  518. <Grid ctrlCommon:GridHelper.Column0="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column1="Transparent">
  519. <Grid.ColumnDefinitions>
  520. <ColumnDefinition Width="1.9*" />
  521. <ColumnDefinition Width="*" />
  522. </Grid.ColumnDefinitions>
  523. <Grid.RowDefinitions>
  524. <RowDefinition Height="32" />
  525. <RowDefinition Height="32" />
  526. <RowDefinition Height="32" />
  527. <RowDefinition Height="32" />
  528. <RowDefinition Height="32" />
  529. </Grid.RowDefinitions>
  530. <Label Grid.Row="0" Content="Load Request :" FontSize="18"
  531. HorizontalContentAlignment="Right" />
  532. <ctrlCommon:LED Grid.Row="0" Grid.Column="1"
  533. On="{Binding E84Data.LoadRequest}" />
  534. <Label Grid.Row="1" Content="Unload Request :" FontSize="18"
  535. HorizontalContentAlignment="Right" />
  536. <ctrlCommon:LED Grid.Row="1" Grid.Column="1"
  537. On="{Binding E84Data.UnloadRequest}" />
  538. <Label Grid.Row="2" Content="Ready to Transfer :" FontSize="18"
  539. HorizontalContentAlignment="Right" />
  540. <ctrlCommon:LED Grid.Row="2" Grid.Column="1"
  541. On="{Binding E84Data.ReadyToTransfer}" />
  542. <Label Grid.Row="3" Content="Handoff Available :" FontSize="18"
  543. HorizontalContentAlignment="Right" />
  544. <ctrlCommon:LED Grid.Row="3" Grid.Column="1"
  545. On="{Binding E84Data.HandoffAvailable}" />
  546. <Label Grid.Row="4" Content="Emergency Stop OK :" FontSize="18"
  547. HorizontalContentAlignment="Right" />
  548. <ctrlCommon:LED Grid.Row="4" Grid.Column="1"
  549. On="{Binding E84Data.EmergencyOk}" />
  550. </Grid>
  551. </Border>
  552. <Border Grid.Row="1" BorderBrush="Gray" BorderThickness="1" Height="65">
  553. <Grid ctrlCommon:GridHelper.Column0="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column1="Transparent">
  554. <CheckBox Content="Error on Placement Timeout" IsChecked="True" IsEnabled="False"
  555. VerticalAlignment="Center" HorizontalAlignment="Center"
  556. FontSize="16" />
  557. </Grid>
  558. </Border>
  559. </Grid>
  560. </controls:HeaderPanel>
  561. </DockPanel>
  562. </Border>
  563. <Border x:Name="ConfigBorder" Grid.Column="2" HorizontalAlignment="Left"
  564. VerticalAlignment="Top"
  565. BorderThickness="1" BorderBrush="#84a567" Height="263" Width="500" Margin="5,0,5,0">
  566. <DockPanel Background="{StaticResource Table_BG_Content}">
  567. <controls:HeaderPanel Header="TimeOut Settings" Width="500">
  568. <!--<Label Content="TimeOut Settings" HorizontalContentAlignment="Center"
  569. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />-->
  570. <Grid>
  571. <Border BorderBrush="Gray" BorderThickness="1">
  572. <Grid ctrlCommon:GridHelper.Column0="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column1="Transparent">
  573. <Grid.ColumnDefinitions>
  574. <ColumnDefinition Width="41*"/>
  575. <ColumnDefinition Width="58*"/>
  576. <ColumnDefinition Width="20*"/>
  577. </Grid.ColumnDefinitions>
  578. <Grid.RowDefinitions>
  579. <RowDefinition Height="37" />
  580. <RowDefinition Height="37" />
  581. <RowDefinition Height="37" />
  582. <RowDefinition Height="37" />
  583. <RowDefinition Height="37" />
  584. <RowDefinition Height="37" />
  585. </Grid.RowDefinitions>
  586. <controls:AITScDoubleRow ScName="TP1 (sec)" Grid.Row="0"
  587. ScId="Fa.E84.TP1"
  588. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP1}"
  589. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP1}"
  590. Command="{Binding SetConfigCommand}"
  591. NameWidth="115" FeedbackWidth="130"
  592. SetPointWidth="130" CommandWidth="120" Grid.ColumnSpan="3" />
  593. <controls:AITScDoubleRow ScName="TP2 (sec)" Grid.Row="1"
  594. ScId="Fa.E84.TP2"
  595. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP2}"
  596. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP2}"
  597. Command="{Binding SetConfigCommand}"
  598. NameWidth="115" FeedbackWidth="130"
  599. SetPointWidth="130" CommandWidth="120" Grid.ColumnSpan="3" />
  600. <controls:AITScDoubleRow ScName="TP3 (sec)" Grid.Row="2"
  601. ScId="Fa.E84.TP3"
  602. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP3}"
  603. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP3}"
  604. Command="{Binding SetConfigCommand}"
  605. NameWidth="115" FeedbackWidth="130"
  606. SetPointWidth="130" CommandWidth="120" Grid.ColumnSpan="3" />
  607. <controls:AITScDoubleRow ScName="TP4(sec)" Grid.Row="3"
  608. ScId="Fa.E84.TP4"
  609. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP4}"
  610. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP4}"
  611. Command="{Binding SetConfigCommand}"
  612. NameWidth="115" FeedbackWidth="130"
  613. SetPointWidth="130" CommandWidth="120" Grid.ColumnSpan="3" />
  614. <controls:AITScDoubleRow ScName="TP5(sec)" Grid.Row="4"
  615. ScId="Fa.E84.TP5"
  616. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP5}"
  617. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP5}"
  618. Command="{Binding SetConfigCommand}"
  619. NameWidth="115" FeedbackWidth="130"
  620. SetPointWidth="130" CommandWidth="120" Grid.ColumnSpan="3" />
  621. <controls:AITScDoubleRow ScName="TP6(sec)" Grid.Row="5"
  622. ScId="Fa.E84.TP6"
  623. ScFeedback="{Binding ConfigFeedback.Fa_E84_TP6}"
  624. ScSetPoint="{Binding ConfigSetPoint.Fa_E84_TP6}"
  625. Command="{Binding SetConfigCommand}"
  626. NameWidth="115" FeedbackWidth="130"
  627. SetPointWidth="130" CommandWidth="120" Grid.ColumnSpan="3" />
  628. </Grid>
  629. </Border>
  630. </Grid>
  631. </controls:HeaderPanel>
  632. </DockPanel>
  633. </Border>
  634. <Border Grid.Column="3" HorizontalAlignment="Left" VerticalAlignment="Top"
  635. BorderThickness="1" BorderBrush="#84a567" Height="263" Width="412" Margin="15,0,0,0">
  636. <DockPanel Background="{StaticResource Table_BG_Content}">
  637. <controls:HeaderPanel Header="Error Recovery" Width="412">
  638. <!--<Label Content="Error Recovery" HorizontalContentAlignment="Center"
  639. DockPanel.Dock="Top" Background="#7fc7ed" Height="30" />-->
  640. <Grid>
  641. <Grid.ColumnDefinitions>
  642. <ColumnDefinition Width="77*"/>
  643. <ColumnDefinition Width="333*"/>
  644. </Grid.ColumnDefinitions>
  645. <Grid.RowDefinitions>
  646. <RowDefinition Height="*" />
  647. <RowDefinition Height="50" />
  648. <RowDefinition Height="50" />
  649. <RowDefinition Height="125" />
  650. </Grid.RowDefinitions>
  651. <Button Content="Retry" x:Name="btnRetry" Grid.Row="1" FontSize="20"
  652. Width="120" Height="42" VerticalAlignment="Center" Command="{Binding E84Command}"
  653. CommandParameter="E84Retry" Grid.Column="1" Margin="68,0,145,0" />
  654. <Button Content="Complete" x:Name="btnComplete" Grid.Row="2" FontSize="20"
  655. Width="120" Height="42" VerticalAlignment="Center" Command="{Binding E84Command}"
  656. CommandParameter="E84Complete" Grid.Column="1" Margin="68,0,145,0" />
  657. <Border Grid.Row="3" BorderBrush="Gray" BorderThickness="1" Height="120" Grid.ColumnSpan="2" Margin="0,2,0,2">
  658. <Grid ctrlCommon:GridHelper.Column0="{StaticResource Table_BG_Title}" ctrlCommon:GridHelper.Column1="Transparent" Margin="10">
  659. <CheckBox Content="Error on access mode violation"
  660. IsChecked="False" VerticalAlignment="Center"
  661. HorizontalAlignment="Center" VerticalContentAlignment="Center" FontSize="16" IsEnabled="False"/>
  662. </Grid>
  663. </Border>
  664. </Grid>
  665. </controls:HeaderPanel>
  666. </DockPanel>
  667. </Border>
  668. </Grid>
  669. </DockPanel>
  670. </Border>
  671. <Border HorizontalAlignment="Right" VerticalAlignment="Bottom" BorderThickness="1"
  672. BorderBrush="#84a567" Height="793" Width="282" Margin="0,0,0,0" Grid.RowSpan="3">
  673. <DockPanel Background="{StaticResource Table_BG_Content}" HorizontalAlignment="Left">
  674. <controls:HeaderPanel Header="Wafer Thickness(1=0.01mm)" Width="282" RenderTransformOrigin="0.045,0.503">
  675. <DataGrid FontSize="16" AutoGenerateColumns="False" CanUserAddRows="False" CanUserResizeRows="False" CanUserSortColumns="False" ItemsSource="{Binding E84Data.AllSlotThickness}"
  676. ScrollViewer.CanContentScroll="True"
  677. ScrollViewer.VerticalScrollBarVisibility="Auto"
  678. ScrollViewer.HorizontalScrollBarVisibility="Auto" Height="754" VerticalAlignment="Top" Margin="0,0,0,0" Width="282">
  679. <DataGrid.Columns>
  680. <DataGridTemplateColumn Header="Slot" Width="100" IsReadOnly="True">
  681. <DataGridTemplateColumn.CellTemplate>
  682. <DataTemplate>
  683. <Label Width="100" FontSize="12" HorizontalAlignment="Center" Background="{StaticResource Table_BG_Content}" Content="{Binding SlotName}"/>
  684. </DataTemplate>
  685. </DataGridTemplateColumn.CellTemplate>
  686. </DataGridTemplateColumn>
  687. <DataGridTemplateColumn Header="Thickness" Width="180" IsReadOnly="True">
  688. <DataGridTemplateColumn.CellTemplate>
  689. <DataTemplate>
  690. <TextBlock Width="180" FontSize="12" Foreground="Gray" TextAlignment="Center" HorizontalAlignment="Center" VerticalAlignment="Stretch" Background="#d6f1ff" Text="{Binding Value}"/>
  691. </DataTemplate>
  692. </DataGridTemplateColumn.CellTemplate>
  693. </DataGridTemplateColumn>
  694. </DataGrid.Columns>
  695. </DataGrid>
  696. </controls:HeaderPanel>
  697. </DockPanel>
  698. </Border>
  699. </Grid>
  700. </DockPanel>
  701. </Border>
  702. </Grid>
  703. </UserControl>