EfemView.xaml 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687
  1. <UserControl x:Class="CyberX8_MainPages.Views.EfemView"
  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:CyberX8_MainPages.Views"
  7. xmlns:customControls="clr-namespace:CyberX8_Themes.CustomControls;assembly=CyberX8_Themes"
  8. xmlns:userControls="clr-namespace:CyberX8_Themes.UserControls;assembly=CyberX8_Themes"
  9. xmlns:prism="http://prismlibrary.com/"
  10. xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
  11. xmlns:converters="clr-namespace:CyberX8_Themes.Converters;assembly=CyberX8_Themes"
  12. prism:ViewModelLocator.AutoWireViewModel="True"
  13. xmlns:unity="clr-namespace:CyberX8_MainPages.Unity"
  14. mc:Ignorable="d"
  15. d:DesignHeight="850" d:DesignWidth="1920">
  16. <UserControl.Resources>
  17. <converters:BoolToVisibility2 x:Key="BoolToVisibility2"/>
  18. <converters:BoolToVisibility x:Key="BoolToVisibility"/>
  19. <converters:BoolToColor x:Key="boolToColor"></converters:BoolToColor>
  20. </UserControl.Resources>
  21. <Canvas>
  22. <Border BorderThickness="0,0,0,1" BorderBrush="Black" Canvas.Top="20" Canvas.Left="540">
  23. <StackPanel Orientation="Horizontal" Margin="0,0,0,5">
  24. <!--<RadioButton Content="Connect" FontSize="15" Width="120" Height="28" Margin="20 5 5 0" Style="{StaticResource Button_RadioButton}" IsChecked="{Binding TMIsOFFline,Converter={StaticResource BoolToBool},Mode=TwoWay}" GroupName="IsConnect"/>
  25. <RadioButton Content="DisConnect" FontSize="15" Width="120" Height="28" Margin="5 5 0 0" Style="{StaticResource Button_RadioButton}" IsChecked="{Binding TMIsOFFline,Mode=TwoWay}" GroupName="IsConnect"/>-->
  26. <customControls:PathButton IsEnabled="{Binding IsHomeAllEnable}" Content="Home All" FontSize="15" Width="120" Height="28" Margin="20 5 5 0" Command="{Binding HomeAllCommand}"/>
  27. <customControls:PathButton Content="Clear Error" FontSize="15" Width="120" Height="28" Margin="5 5 5 0" Command="{Binding ClearErrorCommand}"/>
  28. <customControls:PathButton Content="Abort" FontSize="15" Width="120" Height="28" Margin="5 5 5 0" Command="{Binding AbortCommand}"/>
  29. <customControls:PathButton Content="CloseBuzzer" FontSize="15" Width="120" Height="28" Margin="5 5 5 0" Command="{Binding CloseBuzzerCommand}"/>
  30. </StackPanel>
  31. </Border>
  32. <userControls:FOUPFrontView UnitData="{Binding LP1ModuleInfo}"
  33. IsCassettePlaced="{Binding RtDataValues[LP1.CassettePlaced]}"
  34. Canvas.Top="70" Canvas.Left="20"/>
  35. <TextBlock Text="LP1" Canvas.Top="470" Canvas.Left="70" FontSize="12"
  36. Visibility="{Binding RtDataValues[LP1.CassettePlaced],Converter={StaticResource BoolToVisibility2}}"></TextBlock>
  37. <userControls:FOUPFrontView UnitData="{Binding LP2ModuleInfo}"
  38. IsCassettePlaced="{Binding RtDataValues[LP2.CassettePlaced]}"
  39. Canvas.Top="70" Canvas.Left="160"/>
  40. <TextBlock Text="LP2" Canvas.Top="470" Canvas.Left="210" FontSize="12"
  41. Visibility="{Binding RtDataValues[LP2.CassettePlaced],Converter={StaticResource BoolToVisibility2}}"></TextBlock>
  42. <userControls:FOUPFrontView UnitData="{Binding LP3ModuleInfo}"
  43. IsCassettePlaced="{Binding RtDataValues[LP3.CassettePlaced]}"
  44. Canvas.Top="70" Canvas.Left="300"/>
  45. <TextBlock Text="LP3" Canvas.Top="470" Canvas.Left="350" FontSize="12"
  46. Visibility="{Binding RtDataValues[LP3.CassettePlaced],Converter={StaticResource BoolToVisibility2}}"></TextBlock>
  47. <StackPanel Canvas.Top="15" Canvas.Left="1700">
  48. <userControls:FOUPFrontView UnitData="{Binding Dummy2ModuleInfo}"
  49. IsCassettePlaced="{Binding RtDataValues[Dummy2.CassettePlaced]}"
  50. ShowTitle="False" IsEnabled="{Binding RtDataValues[System.IsAutoMode],Converter={StaticResource BoolToBool}}"/>
  51. <TextBlock Text="Dummy2" HorizontalAlignment="Center" Margin="0,5,0,20" FontSize="12"
  52. Visibility="{Binding RtDataValues[Dummy2.CassettePlaced],Converter={StaticResource BoolToVisibility2}}">
  53. </TextBlock>
  54. <TextBlock Text="{Binding RtDataValues[Dummy2.WaferSize], StringFormat=({0})}" HorizontalAlignment="Center" Margin="0,-10,0,0" FontSize="12"
  55. Visibility="{Binding RtDataValues[Dummy2.CassettePlaced],Converter={StaticResource BoolToVisibility2}}"/>
  56. </StackPanel>
  57. <StackPanel Canvas.Top="15" Canvas.Left="1550">
  58. <userControls:FOUPFrontView UnitData="{Binding Dummy1ModuleInfo}"
  59. IsCassettePlaced="{Binding RtDataValues[Dummy1.CassettePlaced]}"
  60. ShowTitle="False" IsEnabled="{Binding RtDataValues[System.IsAutoMode],Converter={StaticResource BoolToBool}}"/>
  61. <TextBlock Text="Dummy1" HorizontalAlignment="Center" Margin="0,5,0,0" FontSize="12"
  62. Visibility="{Binding RtDataValues[Dummy1.CassettePlaced],Converter={StaticResource BoolToVisibility2}}">
  63. </TextBlock>
  64. <TextBlock Text="{Binding RtDataValues[Dummy1.WaferSize], StringFormat=({0})}" HorizontalAlignment="Center" Margin="0,10,0,0" FontSize="12"
  65. Visibility="{Binding RtDataValues[Dummy1.CassettePlaced],Converter={StaticResource BoolToVisibility2}}"/>
  66. </StackPanel>
  67. <userControls:SRDFrontView UnitData1="{Binding Srd2ModuleInfo}" UnitData2="{Binding Srd1ModuleInfo}" Title="SRD" Canvas.Top="67" Canvas.Left="1040" HorizontalAlignment="Center" VerticalAlignment="Top"/>
  68. <userControls:RobotFrontView UnitData="{Binding EFEMModuleInfo}" Canvas.Left="1222" Canvas.Top="99" HorizontalAlignment="Center" VerticalAlignment="Top"/>
  69. <Canvas Canvas.Top="-150">
  70. <Grid Canvas.Left="499" Canvas.Top="440" Panel.ZIndex="2" Visibility="{Binding IsLP1Unable,Converter={StaticResource bool2VisibilityConverter}}">
  71. <Rectangle Width="70" Height="70" Fill="Silver" Opacity="0.8" RadiusX="0.1" RadiusY="0.1"
  72. />
  73. </Grid>
  74. <TextBlock Canvas.Top="485" Canvas.Left="430" Text="{Binding RtDataValues[LP1.WaferSize], StringFormat=({0})}" Visibility="{Binding RtDataValues[LP1.CassettePlaced], Converter={StaticResource BoolToVisibility2}}"
  75. HorizontalAlignment="Center" Margin="0,5,0,0" FontSize="16">
  76. </TextBlock>
  77. <Grid Canvas.Left="499" Canvas.Top="538" Panel.ZIndex="2" Visibility="{Binding IsLP2Unable,Converter={StaticResource bool2VisibilityConverter}}">
  78. <Rectangle Width="70" Height="70" Fill="Silver" Opacity="0.8" RadiusX="0.1" RadiusY="0.1"
  79. />
  80. </Grid>
  81. <TextBlock Canvas.Top="580" Canvas.Left="430" Text="{Binding RtDataValues[LP2.WaferSize], StringFormat=({0})}" Visibility="{Binding RtDataValues[LP2.CassettePlaced], Converter={StaticResource BoolToVisibility2}}"
  82. HorizontalAlignment="Center" Margin="0,5,0,0" FontSize="16">
  83. </TextBlock>
  84. <Grid Canvas.Left="499" Canvas.Top="635" Panel.ZIndex="2" Visibility="{Binding IsLP3Unable,Converter={StaticResource bool2VisibilityConverter}}">
  85. <Rectangle Width="70" Height="70" Fill="Silver" Opacity="0.8" RadiusX="0.1" RadiusY="0.1"
  86. />
  87. </Grid>
  88. <TextBlock Canvas.Top="680" Canvas.Left="430" Text="{Binding RtDataValues[LP3.WaferSize], StringFormat=({0})}" Visibility="{Binding RtDataValues[LP3.CassettePlaced], Converter={StaticResource BoolToVisibility2}}"
  89. HorizontalAlignment="Center" Margin="0,5,0,0" FontSize="16">
  90. </TextBlock>
  91. <Viewbox Width="890" Height="890" Canvas.Left="297" Stretch="Fill" HorizontalAlignment="Center" VerticalAlignment="Top" Canvas.Top="-8">
  92. <Canvas Width="1000" Height="1000">
  93. <!--<userControls:MainTM Width="300" Height="250" Canvas.Left="380" Canvas.Top="90"/>-->
  94. </Canvas>
  95. </Viewbox>
  96. <userControls:EFEM x:Name="efem1" Width="360" Height="300" Canvas.Left="578" Canvas.Top="426"
  97. Puf1Wafer="{Binding Puf1Wafer}"
  98. Puf2Wafer="{Binding Puf2Wafer}"
  99. LP1Presented="{Binding RtDataValues[LP1.CassettePlaced]}"
  100. LP2Presented="{Binding RtDataValues[LP2.CassettePlaced]}"
  101. LP3Presented="{Binding RtDataValues[LP3.CassettePlaced]}"
  102. LP1Loaded="{Binding RtDataValues[LP1.IsLoaded]}"
  103. LP2Loaded="{Binding RtDataValues[LP2.IsLoaded]}"
  104. LP3Loaded="{Binding RtDataValues[LP3.IsLoaded]}"
  105. RobotATAction="{Binding Robot1TAction}"
  106. RobotAXAction="{Binding Robot1XAction}"
  107. RobotAWaferInfo="{Binding BladeAWafer}"
  108. CurrentRobotPosition="{Binding CurrentRobotPosition}"
  109. Puf2IsInRobotStation="{Binding Puf2IsInRobotStation}"
  110. Puf1IsInRobotStation="{Binding Puf1IsInRobotStation}"
  111. Aligner1Wafer="{Binding Aligner1Wafer}"
  112. AlignActionValue="{Binding AlignValue, UpdateSourceTrigger=PropertyChanged}"/>
  113. </Canvas>
  114. <userControls:SRD CassetteName="SRD" Canvas.Left="787" Canvas.Top="172" Width="100" Height="100" HorizontalAlignment="Left" VerticalAlignment="Center" SRD1Wafer="{Binding Srd1Wafer}" SRD2Wafer="{Binding Srd2Wafer}" SRDVisibility="Visible"/>
  115. <!--<userControls:SRD CassetteName="SRD2" Canvas.Left="734" Canvas.Top="172" Width="100" Height="100" HorizontalAlignment="Center" VerticalAlignment="Top" RobotWafer="{Binding SRD2Wafer}" SRDVisibility="Visible"/>-->
  116. <userControls:DummyCassette Canvas.Left="751" Canvas.Top="272" RotateTransformValue="180" Width="100" Height="100" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  117. <TextBlock Canvas.Top="142" Canvas.Left="670" Text="Dummy" HorizontalAlignment="Center" Margin="0,5,0,0" FontSize="16">
  118. </TextBlock>
  119. <GroupBox Header="" Background="{DynamicResource Table_BG_Content}" Width="500" Height="70" Canvas.Left="1020" Canvas.Top="454" HorizontalAlignment="Center" VerticalAlignment="Top">
  120. <Grid>
  121. <TextBlock Margin="20,0,0,0" Text="Vacuum" VerticalAlignment="Center" HorizontalAlignment="Left" FontSize="14" />
  122. <TextBlock Margin="100,0,0,0" Text="{Binding VacuumValue}" HorizontalAlignment="Left" FontSize="14" VerticalAlignment="Center"/>
  123. </Grid>
  124. </GroupBox>
  125. <GroupBox Header="Door" Background="{DynamicResource Table_BG_Content}" Width="500" Height="120" Canvas.Left="1020" Canvas.Top="525" HorizontalAlignment="Center" VerticalAlignment="Top">
  126. <Grid>
  127. <Ellipse Width="16" Height="16" Fill="{Binding DoorUnlock, Converter={StaticResource boolToColor}}" Stroke="Silver" Margin="40,-30,432,14"/>
  128. <customControls:PathButton Content="Open" Height="33" Command="{Binding DoorUnlockCommand}" Margin="76,10,346,55"/>
  129. <customControls:PathButton Content="Close" Height="33" Margin="160,10,254,55" Command="{Binding DoorLockCommand}"/>
  130. <userControls:LockControl HorizontalAlignment="Left" VerticalAlignment="Top" Margin="442,11,0,0" IsLocked="{Binding IsDoorLocked}"/>
  131. <customControls:PathButton Content="Pause" Height="33" Command="{Binding PauseCommand}" Margin="252,10,153,55"/>
  132. <customControls:PathButton Content="Resume" Height="33" Margin="347,10,64,55" Command="{Binding ResumeCommand}"/>
  133. <customControls:PathButton Content="SafeOpen" Height="33" Command="{Binding SafeOpenCommand}" Margin="76,60,256,5"/>
  134. <customControls:PathButton Content="SafeClose" Height="33" Margin="255,60,67,5" Command="{Binding SafeCloseCommand}"/>
  135. </Grid>
  136. </GroupBox>
  137. <Grid Canvas.Top="253" Canvas.Left="1020" Width="500" HorizontalAlignment="Center" VerticalAlignment="Top">
  138. <Grid.RowDefinitions>
  139. <RowDefinition Height="30"/>
  140. <RowDefinition Height="36"/>
  141. <RowDefinition Height="Auto"/>
  142. </Grid.RowDefinitions>
  143. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_FirstTitle}" Padding="5,1">
  144. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
  145. <Path Data="M0,0 L5,0 5,5 z" Fill="White" HorizontalAlignment="Left" Grid.Row="1" RenderTransformOrigin="0.5,0.5" Stretch="Fill" Width="5" Height="5">
  146. <Path.RenderTransform>
  147. <TransformGroup>
  148. <ScaleTransform/>
  149. <SkewTransform/>
  150. <RotateTransform Angle="45"/>
  151. <TranslateTransform/>
  152. </TransformGroup>
  153. </Path.RenderTransform>
  154. </Path>
  155. <TextBlock Margin="5,0,0,0" Text="EFEM Robot Operation" FontFamily="Arial" FontSize="14" Foreground="{DynamicResource FG_White}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  156. </StackPanel>
  157. </Border>
  158. <Border Grid.Row="1" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,0" Background="{DynamicResource Table_BG_Content}" >
  159. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
  160. <customControls:PathButton Content="Home" Height="33" Width="120" Margin="20,0,20,0" Command="{Binding RobotHomeCommand}"/>
  161. <customControls:PathButton Content="Power On" Height="33" Width="120" Margin="20,0,20,0" Command="{Binding RobotPowerOnCommand}"/>
  162. <customControls:PathButton Content="Power Off" Height="33" Width="120" Margin="20,0,20,0" Command="{Binding RobotPowerOffCommand}"/>
  163. </StackPanel>
  164. </Border>
  165. <Border Grid.Row="2" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,0" Background="{DynamicResource Table_BG_Content}" Margin="0,0,0,64" >
  166. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
  167. <customControls:PathButton Content="Map Dummy" Height="33" Width="120" Margin="20,0,20,0" Command="{Binding BFMapCommand}"/>
  168. <customControls:PathButton Content="Speed" Height="33" Width="120" Margin="20,0,0,0" Command="{Binding SetRobotSpeedCommand}"/>
  169. <TextBox Text="{Binding RobotSpeedValue, Mode=TwoWay}" Width="60" Height="33" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Margin="5,0,20,0" FontSize="20"/>
  170. <CheckBox Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Center" Content="Vacuum On" FontSize="13" FontWeight="Bold"
  171. IsChecked="{Binding IsRobotVacuumOn, Mode=TwoWay}" Command="{Binding RobotVacuumCommand}"/>
  172. </StackPanel>
  173. </Border>
  174. <!--<Border Grid.Row="1" BorderBrush="{DynamicResource Table_BD}" Background="{DynamicResource Table_BG_Content}" >-->
  175. <Grid Height="100" unity:GridOptions.ShowBorder="True" unity:GridOptions.LineBrush="Black" Grid.Row="2" Background="{DynamicResource Table_BG_Content}" Margin="0,37,0,-37">
  176. <Grid.RowDefinitions>
  177. <RowDefinition Height="25"/>
  178. <RowDefinition/>
  179. <RowDefinition/>
  180. <!--<RowDefinition/>
  181. <RowDefinition/>-->
  182. <!--<RowDefinition/>-->
  183. </Grid.RowDefinitions>
  184. <Grid.ColumnDefinitions>
  185. <ColumnDefinition/>
  186. <ColumnDefinition/>
  187. <ColumnDefinition/>
  188. <ColumnDefinition/>
  189. </Grid.ColumnDefinitions>
  190. <TextBlock Text="Module" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="14" />
  191. <TextBlock Text="Slot" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="14"/>
  192. <TextBlock Text="Blade" Grid.Column="2" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="14"/>
  193. <TextBlock Text="Operation" Grid.Column="3" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="14"/>
  194. <ComboBox Grid.Row="1" Margin="5" SelectedItem="{Binding PickSelectedModule}" ItemsSource="{Binding EFEMModules}">
  195. <i:Interaction.Triggers>
  196. <i:EventTrigger EventName="SelectionChanged">
  197. <i:InvokeCommandAction Command="{Binding ModuleChangeCommand}" CommandParameter="Pick"/>
  198. </i:EventTrigger>
  199. </i:Interaction.Triggers>
  200. </ComboBox>
  201. <ComboBox Grid.Row="1" Grid.Column="1" Margin="5" ItemsSource="{Binding PickSoltItemsSource}" SelectedIndex="{Binding PickSoltSelectedIndex}"/>
  202. <TextBox Text="1" Grid.Row="1" Grid.Column="2" Margin="5" FontSize="15" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"></TextBox>
  203. <!--<ComboBox Grid.Row="1" Grid.Column="2" Margin="5" SelectedItem="{Binding PickSelectedBlade}" unity:ItemsControlHelper.EnumValuesToItemsSource="True"/>-->
  204. <Button Grid.Row="1" Grid.Column="3" Content="Pick" Command="{Binding PickCommand}"/>
  205. <ComboBox Grid.Row="2" Margin="5" SelectedItem="{Binding PlaceSelectedModule}" ItemsSource="{Binding EFEMModules}">
  206. <i:Interaction.Triggers>
  207. <i:EventTrigger EventName="SelectionChanged">
  208. <i:InvokeCommandAction Command="{Binding ModuleChangeCommand}" CommandParameter="Place" />
  209. </i:EventTrigger>
  210. </i:Interaction.Triggers>
  211. </ComboBox>
  212. <ComboBox Grid.Row="2" Grid.Column="1" Margin="5" ItemsSource="{Binding PlaceSoltItemsSource}" SelectedIndex="{Binding PlaceSoltSelectedIndex}"/>
  213. <!--<ComboBox Grid.Row="2" Grid.Column="2" Margin="5" SelectedItem="{Binding PlaceSelectedBlade}" unity:ItemsControlHelper.EnumValuesToItemsSource="True"/>-->
  214. <TextBox Text="1" Grid.Row="2" Grid.Column="2" Margin="5" FontSize="15" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"></TextBox>
  215. <Button Grid.Row="2" Grid.Column="3" Content="Place" Command="{Binding PlaceCommand}"/>
  216. <!--<ComboBox Grid.Row="3" Margin="5" SelectedItem="{Binding ExtendSelectedModule}" ItemsSource="{Binding EFEMModules}">
  217. <i:Interaction.Triggers>
  218. <i:EventTrigger EventName="SelectionChanged">
  219. <i:InvokeCommandAction Command="{Binding ModuleChangeCommand}" CommandParameter="Extend" />
  220. </i:EventTrigger>
  221. </i:Interaction.Triggers>
  222. </ComboBox>
  223. <ComboBox Grid.Row="3" Grid.Column="1" Margin="5" ItemsSource="{Binding ExtendSoltItemsSource}" SelectedIndex="{Binding ExtendSoltSelectedIndex}"/>
  224. <ComboBox Grid.Row="3" Grid.Column="2" Margin="5" SelectedItem="{Binding ExtendSelectedBlade}" unity:ItemsControlHelper.EnumValuesToItemsSource="True"/>
  225. <Button Grid.Row="3" Grid.Column="3" Content="Extend" Command="{Binding ExtendCommand}"/>
  226. <ComboBox Grid.Row="4" Margin="5" SelectedItem="{Binding RetractSelectedModule}" ItemsSource="{Binding EFEMModules}">
  227. <i:Interaction.Triggers>
  228. <i:EventTrigger EventName="SelectionChanged">
  229. <i:InvokeCommandAction Command="{Binding ModuleChangeCommand}" CommandParameter="Retract" />
  230. </i:EventTrigger>
  231. </i:Interaction.Triggers>
  232. </ComboBox>
  233. <ComboBox Grid.Row="4" Grid.Column="1" Margin="5" ItemsSource="{Binding RetractSoltItemsSource}" SelectedIndex="{Binding RetractSoltSelectedIndex}"/>
  234. <ComboBox Grid.Row="4" Grid.Column="2" Margin="5" SelectedItem="{Binding RetractSelectedBlade}" unity:ItemsControlHelper.EnumValuesToItemsSource="True"/>
  235. <Button Grid.Row="4" Grid.Column="3" Content="Retract" Command="{Binding RetractCommand}"/>-->
  236. <!--<ComboBox Grid.Row="5" Grid.Column="0" Margin="5" SelectedItem="{Binding WaferRobotTAction}" unity:ItemsControlHelper.EnumValuesToItemsSource="True"/>
  237. <ComboBox Grid.Row="5" Grid.Column="2" Margin="5" SelectedItem="{Binding GoToSelectedBlade}" unity:ItemsControlHelper.EnumValuesToItemsSource="True"/>-->
  238. <!--<Button Grid.Row="5" Grid.Column="3" Margin="5" Height="25" Content="Goto" IsEnabled="{Binding Path=IsManualMode}" Command="{Binding GotoCommand}"/>-->
  239. </Grid>
  240. </Grid>
  241. <StackPanel Canvas.Left="1040" Canvas.Top="162" Width="400" HorizontalAlignment="Center" VerticalAlignment="Top">
  242. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_FirstTitle}" Padding="5,1" Height="30">
  243. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
  244. <Path Data="M0,0 L5,0 5,5 z" Fill="White" HorizontalAlignment="Left" Grid.Row="1" RenderTransformOrigin="0.5,0.5" Stretch="Fill" Width="5" Height="5">
  245. <Path.RenderTransform>
  246. <TransformGroup>
  247. <ScaleTransform/>
  248. <SkewTransform/>
  249. <RotateTransform Angle="45"/>
  250. <TranslateTransform/>
  251. </TransformGroup>
  252. </Path.RenderTransform>
  253. </Path>
  254. <TextBlock Margin="5,0,0,0" Text="Aligner1 Operation" FontFamily="Arial" FontSize="14" Foreground="{DynamicResource FG_White}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  255. </StackPanel>
  256. </Border>
  257. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="#D0D8E8" Height="40">
  258. <StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Center">
  259. <customControls:PathButton Content="Home" Width="100" Height="33" Command="{Binding Align1HomeCommand}" Margin="0,0,5,0"/>
  260. <customControls:PathButton Content="Align" Width="100" Height="33" Command="{Binding Align1AlignCommand}" Margin="0,0,2,0"/>
  261. <TextBox Text="{Binding AlignValue, UpdateSourceTrigger=PropertyChanged}" Width="60" Height="33" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Margin="2,0,12,0" FontSize="20"/>
  262. <CheckBox Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Center" Content="Vacuum On" FontSize="10" FontWeight="Bold"
  263. IsChecked="{Binding IsAlignerVacuumOn, Mode=TwoWay}" Command="{Binding AlignerVacuumCommand}"/>
  264. </StackPanel>
  265. </Border>
  266. </StackPanel>
  267. <StackPanel Orientation="Horizontal" Canvas.Bottom="10" Canvas.Left="100">
  268. <Grid Width="470" Visibility="{Binding IsLP1Installed, Converter={StaticResource bool2VisibilityConverter}}" IsEnabled="{Binding IsLP1Unable,Converter={StaticResource BoolToBool}}">
  269. <Grid.RowDefinitions>
  270. <RowDefinition Height="24"/>
  271. <RowDefinition Height="30"/>
  272. <RowDefinition Height="30"/>
  273. <RowDefinition Height="30"/>
  274. <RowDefinition Height="30"/>
  275. <RowDefinition Height="30"/>
  276. </Grid.RowDefinitions>
  277. <Grid.ColumnDefinitions>
  278. <ColumnDefinition Width="100"/>
  279. <ColumnDefinition Width="60"/>
  280. <ColumnDefinition Width="*"/>
  281. </Grid.ColumnDefinitions>
  282. <Label Content="LP1" Background="{DynamicResource Table_BG_Title}" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,1,1" Grid.Row="0" Grid.ColumnSpan="3" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/>
  283. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Padding="5,1,0,1">
  284. <TextBlock Text="Status" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  285. </Border>
  286. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{Binding LP1StatusBackground}" Grid.Row="1" Grid.Column="1" Padding="5,1">
  287. <TextBlock Text="{Binding RtDataValues[LP1.Status]}" TextAlignment="Center" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"/>
  288. </Border>
  289. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column ="2" Padding="5,1">
  290. <StackPanel Orientation="Horizontal" >
  291. <!--<Button Content="Home" Width="80" Height="25" Margin="10,0" Command="{Binding LPHomeCommand}" CommandParameter="LP1"/>-->
  292. <Button IsEnabled="{Binding IsLP1AbortEnable}" Content="Abort" Width="80" Height="25" Margin="10,0" Command="{Binding LPAbortCommand}" CommandParameter="LP1"/>
  293. <Button IsEnabled="{Binding IsLP1ResetEnable}" Content="Reset" Width="80" Height="25" Margin="10,0" Command="{Binding LPResetCommand}" CommandParameter="LP1"/>
  294. </StackPanel>
  295. </Border>
  296. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Padding="5,1,0,1">
  297. <TextBlock Text="Is Present" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"/>
  298. </Border>
  299. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1" Padding="5,1">
  300. <!--<deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding IsLP1Present}"></deviceControl:AITSensor>-->
  301. <Ellipse Width="16" Height="16" Fill="{Binding RtDataValues[LP1.CassettePlaced],Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  302. </Border>
  303. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2" Padding="5,1">
  304. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" IsEnabled="{Binding IsLP1HasNoJob}">
  305. <!--<Button IsEnabled="{Binding IsLP1LoadEnable}" Content="Load" Width="80" Height="25" Margin="10,0" Command="{Binding LPLoadCommand}" CommandParameter="LP1"/>-->
  306. <!--<Button IsEnabled="{Binding IsLP1UnloadEnable}" Content="Unload" Width="80" Height="25" Margin="10,0 " Command="{Binding LPUnLoadCommand}" CommandParameter="LP1"/>-->
  307. <Button IsEnabled="{Binding RtDataValues[LP1.IsLoaded]}" Content="Map" Width="80" Height="25" Margin="10,0 " Command="{Binding LPMapCommand}" CommandParameter="LP1"/>
  308. </StackPanel>
  309. </Border>
  310. <!--<Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Padding="5,1,0,1">
  311. <TextBlock Text="Carrier ID" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"/>
  312. </Border>
  313. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1" Padding="5,1">
  314. <TextBlock Text="{Binding RtDataValues[LP1.CarrierId]}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  315. </Border>
  316. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2" Padding="5,1">
  317. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" >
  318. <Button IsEnabled="{Binding RtDataValues[LP1.CassettePlaced]}" Content="ReadID" Width="80" Height="25" Margin="10,0" Command="{Binding LPReadIDCommand}" CommandParameter="LP1"/>
  319. <Button IsEnabled="{Binding RtDataValues[LP1.CassettePlaced]}" Content="WriteID " Width="80" Height="25" Margin="10,0" Command="{Binding LP1WriteIDCommand}" CommandParameter="LP1"/>
  320. <TextBox IsEnabled="{Binding RtDataValues[LP1.CassettePlaced]}" Text="{Binding SetLP1IDValue, Mode=TwoWay}" Width="80" Height="25" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" FontSize="15"/>
  321. </StackPanel>
  322. </Border>-->
  323. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Padding="5,1,0,1">
  324. <TextBlock Text="Is Clamped" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  325. </Border>
  326. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1" Padding="5,1,0,1">
  327. <!--<deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding IsLP1Clamped}"></deviceControl:AITSensor>-->
  328. <TextBlock Text="{Binding RtDataValues[LP1.IsClamped]}" TextAlignment="Center"/>
  329. </Border>
  330. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2" Padding="5,1">
  331. <StackPanel Orientation="Horizontal">
  332. <!--<Button IsEnabled="{Binding IsLP1ClampEnable}" Margin="10,0" Content="Clamp" Width="80" Height="25" Command="{Binding LPClampCommand}" CommandParameter="LP1"/>-->
  333. <!--<Button IsEnabled="{Binding IsLP1UnclampEnable}" Margin="10,0" Content="Unclamp" Width="80" Height="25" Command="{Binding LPUnClampCommand}" CommandParameter="LP1"/>-->
  334. </StackPanel>
  335. </Border>
  336. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Padding="5,1,0,1">
  337. <TextBlock Text="Is Docked" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  338. </Border>
  339. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1" Padding="5,1,0,1">
  340. <!--<deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding IsLP1Docked}"></deviceControl:AITSensor>-->
  341. <TextBlock Text="{Binding RtDataValues[LP1.IsDocked]}" TextAlignment="Center"/>
  342. </Border>
  343. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2" Padding="5,1">
  344. <StackPanel Orientation="Horizontal">
  345. </StackPanel>
  346. </Border>
  347. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Padding="5,1,0,1">
  348. <TextBlock Text="Is Door Open" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  349. </Border>
  350. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1" Padding="5,1,0,1">
  351. <TextBlock Text="{Binding RtDataValues[LP1.IsDoorOpened]}" TextAlignment="Center"/>
  352. </Border>
  353. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2" Padding="5,1">
  354. <StackPanel Orientation="Horizontal">
  355. </StackPanel>
  356. </Border>
  357. </Grid>
  358. <Grid Margin="1,0,0,0" Width="470" Visibility="{Binding IsLP1Installed, Converter={StaticResource bool2VisibilityConverter}}" IsEnabled="{Binding IsLP2Unable,Converter={StaticResource BoolToBool}}">
  359. <Grid.RowDefinitions>
  360. <RowDefinition Height="24"/>
  361. <RowDefinition Height="30"/>
  362. <RowDefinition Height="30"/>
  363. <RowDefinition Height="30"/>
  364. <RowDefinition Height="30"/>
  365. <RowDefinition Height="30"/>
  366. </Grid.RowDefinitions>
  367. <Grid.ColumnDefinitions>
  368. <ColumnDefinition Width="100"/>
  369. <ColumnDefinition Width="60"/>
  370. <ColumnDefinition Width="*"/>
  371. </Grid.ColumnDefinitions>
  372. <Label Content="LP2" Background="{DynamicResource Table_BG_Title}" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,1,1" Grid.Row="0" Grid.ColumnSpan="3" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/>
  373. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Padding="5,1,0,1">
  374. <TextBlock Text="Status" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  375. </Border>
  376. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{Binding LP1StatusBackground}" Grid.Row="1" Grid.Column="1" Padding="5,1">
  377. <TextBlock Text="{Binding RtDataValues[LP2.Status]}" TextAlignment="Center" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"/>
  378. </Border>
  379. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column ="2" Padding="5,1">
  380. <StackPanel Orientation="Horizontal" >
  381. <!--<Button Content="Home" Width="80" Height="25" Margin="10,0" Command="{Binding LPHomeCommand}" CommandParameter="LP2"/>-->
  382. <Button IsEnabled="{Binding IsLP1AbortEnable}" Content="Abort" Width="80" Height="25" Margin="10,0" Command="{Binding LPAbortCommand}" CommandParameter="LP2"/>
  383. <Button IsEnabled="{Binding IsLP1ResetEnable}" Content="Reset" Width="80" Height="25" Margin="10,0" Command="{Binding LPResetCommand}" CommandParameter="LP2"/>
  384. </StackPanel>
  385. </Border>
  386. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Padding="5,1,0,1">
  387. <TextBlock Text="Is Present" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"/>
  388. </Border>
  389. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1" Padding="5,1">
  390. <!--<deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding IsLP1Present}"></deviceControl:AITSensor>-->
  391. <Ellipse Width="16" Height="16" Fill="{Binding RtDataValues[LP2.CassettePlaced],Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  392. </Border>
  393. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2" Padding="5,1">
  394. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" IsEnabled="{Binding IsLP2HasNoJob}">
  395. <!--<Button IsEnabled="{Binding IsLP1LoadEnable}" Content="Load" Width="80" Height="25" Margin="10,0" Command="{Binding LPLoadCommand}" CommandParameter="LP2"/>
  396. <Button IsEnabled="{Binding IsLP1UnloadEnable}" Content="Unload" Width="80" Height="25" Margin="10,0 " Command="{Binding LPUnLoadCommand}" CommandParameter="LP2"/>-->
  397. <Button IsEnabled="{Binding RtDataValues[LP2.IsLoaded]}" Content="Map" Width="80" Height="25" Margin="10,0 " Command="{Binding LPMapCommand}" CommandParameter="LP2"/>
  398. </StackPanel>
  399. </Border>
  400. <!--<Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Padding="5,1,0,1">
  401. <TextBlock Text="Carrier ID" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"/>
  402. </Border>
  403. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1" Padding="5,1">
  404. <TextBlock Text="{Binding RtDataValues[LP2.CarrierId]}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  405. </Border>
  406. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2" Padding="5,1">
  407. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" >
  408. <Button IsEnabled="{Binding RtDataValues[LP2.CassettePlaced]}" Content="ReadID" Width="80" Height="25" Margin="10,0" Command="{Binding LPReadIDCommand}" CommandParameter="LP2"/>
  409. <Button IsEnabled="{Binding RtDataValues[LP2.CassettePlaced]}" Content="WriteID " Width="80" Height="25" Margin="10,0" Command="{Binding LP2WriteIDCommand}" CommandParameter="LP2"/>
  410. <TextBox IsEnabled="{Binding RtDataValues[LP2.CassettePlaced]}" Text="{Binding SetLP2IDValue, Mode=TwoWay}" Width="80" Height="25" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" FontSize="15"/>
  411. </StackPanel>
  412. </Border>-->
  413. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Padding="5,1,0,1">
  414. <TextBlock Text="Is Clamped" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  415. </Border>
  416. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1" Padding="5,1,0,1">
  417. <!--<deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding IsLP1Clamped}"></deviceControl:AITSensor>-->
  418. <TextBlock Text="{Binding RtDataValues[LP2.IsClamped]}" TextAlignment="Center"/>
  419. </Border>
  420. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2" Padding="5,1">
  421. <StackPanel Orientation="Horizontal" >
  422. <!--<Button IsEnabled="{Binding IsLP1ClampEnable}" Margin="10,0" Content="Clamp" Width="80" Height="25" Command="{Binding LPClampCommand}" CommandParameter="LP2"/>
  423. <Button IsEnabled="{Binding IsLP1UnclampEnable}" Margin="10,0" Content="Unclamp" Width="80" Height="25" Command="{Binding LPUnClampCommand}" CommandParameter="LP2"/>-->
  424. </StackPanel>
  425. </Border>
  426. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Padding="5,1,0,1">
  427. <TextBlock Text="Is Docked" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  428. </Border>
  429. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1" Padding="5,1,0,1">
  430. <!--<deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding IsLP1Docked}"></deviceControl:AITSensor>-->
  431. <TextBlock Text="{Binding RtDataValues[LP2.IsDocked]}" TextAlignment="Center"/>
  432. </Border>
  433. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2" Padding="5,1">
  434. <StackPanel Orientation="Horizontal">
  435. <!--<Button IsEnabled="{Binding IsLP1DockEnable}" Margin="10,0" Content="Dock" Width="80" Height="25" Command="{Binding LPDockCommand}" CommandParameter="LP2">
  436. </Button>
  437. <Button IsEnabled="{Binding IsLP1UndockEnable}" Margin="10,0" Content="Undock" Width="80" Height="25" Command="{Binding LPUnDockCommand}" CommandParameter="LP2">
  438. </Button>-->
  439. </StackPanel>
  440. </Border>
  441. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Padding="5,1,0,1">
  442. <TextBlock Text="Is Door Open" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  443. </Border>
  444. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1" Padding="5,1,0,1">
  445. <TextBlock Text="{Binding RtDataValues[LP2.IsDoorOpened]}" TextAlignment="Center"/>
  446. </Border>
  447. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2" Padding="5,1">
  448. <StackPanel Orientation="Horizontal">
  449. <!--<TextBox IsEnabled="{Binding RtDataValues[LP2.CassettePlaced]}" Margin="10,0" Text="{Binding SetLP2CycleValue, Mode=TwoWay}" Width="80" Height="25" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" FontSize="15"/>
  450. <Button IsEnabled="{Binding RtDataValues[LP2.CassettePlaced]}" Content="Cycle Load/Unload " Width="150" Height="25" Margin="10,0" Command="{Binding LP2CycleCommand}" CommandParameter="LP2"/>-->
  451. </StackPanel>
  452. </Border>
  453. </Grid>
  454. <Grid Margin="1,0,0,0" Width="470" Visibility="{Binding IsLP1Installed, Converter={StaticResource bool2VisibilityConverter}}" IsEnabled="{Binding IsLP3Unable,Converter={StaticResource BoolToBool}}">
  455. <Grid.RowDefinitions>
  456. <RowDefinition Height="24"/>
  457. <RowDefinition Height="30"/>
  458. <RowDefinition Height="30"/>
  459. <RowDefinition Height="30"/>
  460. <RowDefinition Height="30"/>
  461. <RowDefinition Height="30"/>
  462. </Grid.RowDefinitions>
  463. <Grid.ColumnDefinitions>
  464. <ColumnDefinition Width="100"/>
  465. <ColumnDefinition Width="60"/>
  466. <ColumnDefinition Width="*"/>
  467. </Grid.ColumnDefinitions>
  468. <Label Content="LP3" Background="{DynamicResource Table_BG_Title}" BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,1,1,1" Grid.Row="0" Grid.ColumnSpan="3" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"/>
  469. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="1" Padding="5,1,0,1">
  470. <TextBlock Text="Status" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  471. </Border>
  472. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{Binding LP1StatusBackground}" Grid.Row="1" Grid.Column="1" Padding="5,1">
  473. <TextBlock Text="{Binding RtDataValues[LP3.Status]}" TextAlignment="Center" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"/>
  474. </Border>
  475. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="1" Grid.Column ="2" Padding="5,1">
  476. <StackPanel Orientation="Horizontal" >
  477. <!--<Button Content="Home" Width="80" Height="25" Margin="10,0" Command="{Binding LPHomeCommand}" CommandParameter="LP3"/>-->
  478. <Button IsEnabled="{Binding IsLP1AbortEnable}" Content="Abort" Width="80" Height="25" Margin="10,0" Command="{Binding LPAbortCommand}" CommandParameter="LP3"/>
  479. <Button IsEnabled="{Binding IsLP1ResetEnable}" Content="Reset" Width="80" Height="25" Margin="10,0" Command="{Binding LPResetCommand}" CommandParameter="LP3"/>
  480. </StackPanel>
  481. </Border>
  482. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="2" Padding="5,1,0,1">
  483. <TextBlock Text="Is Present" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"/>
  484. </Border>
  485. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="1" Padding="5,1">
  486. <!--<deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding IsLP1Present}"></deviceControl:AITSensor>-->
  487. <Ellipse Width="16" Height="16" Fill="{Binding RtDataValues[LP3.CassettePlaced],Converter={StaticResource boolToColor}}" Stroke="Silver" HorizontalAlignment="Center"/>
  488. </Border>
  489. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="2" Grid.Column="2" Padding="5,1">
  490. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" IsEnabled="{Binding IsLP3HasNoJob}">
  491. <!--<Button IsEnabled="{Binding IsLP1LoadEnable}" Content="Load" Width="80" Height="25" Margin="10,0" Command="{Binding LPLoadCommand}" CommandParameter="LP3"/>
  492. <Button IsEnabled="{Binding IsLP1UnloadEnable}" Content="Unload" Width="80" Height="25" Margin="10,0 " Command="{Binding LPUnLoadCommand}" CommandParameter="LP3"/>-->
  493. <Button IsEnabled="{Binding RtDataValues[LP3.IsLoaded]}" Content="Map" Width="80" Height="25" Margin="10,0 " Command="{Binding LPMapCommand}" CommandParameter="LP3"/>
  494. </StackPanel>
  495. </Border>
  496. <!--<Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Padding="5,1,0,1">
  497. <TextBlock Text="Carrier ID" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center"/>
  498. </Border>
  499. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1" Padding="5,1">
  500. <TextBlock Text="{Binding RtDataValues[LP3.CarrierId]}" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  501. </Border>
  502. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2" Padding="5,1">
  503. <StackPanel Orientation="Horizontal" HorizontalAlignment="Left" >
  504. <Button IsEnabled="{Binding RtDataValues[LP3.CassettePlaced]}" Content="ReadID" Width="80" Height="25" Margin="10,0" Command="{Binding LPReadIDCommand}" CommandParameter="LP3"/>
  505. <Button IsEnabled="{Binding RtDataValues[LP3.CassettePlaced]}" Content="WriteID " Width="80" Height="25" Margin="10,0" Command="{Binding LP3WriteIDCommand}" CommandParameter="LP3"/>
  506. <TextBox IsEnabled="{Binding RtDataValues[LP3.CassettePlaced]}" Text="{Binding SetLP3IDValue, Mode=TwoWay}" Width="80" Height="25" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" FontSize="15"/>
  507. </StackPanel>
  508. </Border>-->
  509. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="3" Padding="5,1,0,1">
  510. <TextBlock Text="Is Clamped" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  511. </Border>
  512. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="1" Padding="5,1,0,1">
  513. <!--<deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding IsLP1Clamped}"></deviceControl:AITSensor>-->
  514. <TextBlock Text="{Binding RtDataValues[LP3.IsClamped]}" TextAlignment="Center"/>
  515. </Border>
  516. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="3" Grid.Column="2" Padding="5,1">
  517. <StackPanel Orientation="Horizontal" >
  518. <!--<Button IsEnabled="{Binding IsLP1ClampEnable}" Margin="10,0" Content="Clamp" Width="80" Height="25" Command="{Binding LPClampCommand}" CommandParameter="LP3"/>
  519. <Button IsEnabled="{Binding IsLP1UnclampEnable}" Margin="10,0" Content="Unclamp" Width="80" Height="25" Command="{Binding LPUnClampCommand}" CommandParameter="LP3"/>-->
  520. </StackPanel>
  521. </Border>
  522. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="4" Padding="5,1,0,1">
  523. <TextBlock Text="Is Docked" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  524. </Border>
  525. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="1" Padding="5,1,0,1">
  526. <!--<deviceControl:AITSensor Margin="5,0" GreenColor="True" LightOnValue="{Binding IsLP1Docked}"></deviceControl:AITSensor>-->
  527. <TextBlock Text="{Binding RtDataValues[LP3.IsDocked]}" TextAlignment="Center"/>
  528. </Border>
  529. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="4" Grid.Column="2" Padding="5,1">
  530. <StackPanel Orientation="Horizontal">
  531. <!--<Button IsEnabled="{Binding IsLP1DockEnable}" Margin="10,0" Content="Dock" Width="80" Height="25" Command="{Binding LPDockCommand}" CommandParameter="LP3"/>
  532. <Button IsEnabled="{Binding IsLP1UndockEnable}" Margin="10,0" Content="Undock" Width="80" Height="25" Command="{Binding LPUnDockCommand}" CommandParameter="LP3"/>-->
  533. </StackPanel>
  534. </Border>
  535. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Title}" Grid.Row="5" Padding="5,1,0,1">
  536. <TextBlock Text="Is Door Open" TextWrapping="Wrap" Foreground="{DynamicResource FG_Black}" FontSize="12" FontFamily="Arial" VerticalAlignment="Center" />
  537. </Border>
  538. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="0,0,0,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="1" Padding="5,1,0,1">
  539. <TextBlock Text="{Binding RtDataValues[LP3.IsDoorOpened]}" TextAlignment="Center"/>
  540. </Border>
  541. <Border BorderBrush="{DynamicResource Table_BD}" BorderThickness="1,0,1,1" Background="{DynamicResource Table_BG_Content}" Grid.Row="5" Grid.Column="2" Padding="5,1">
  542. <StackPanel Orientation="Horizontal">
  543. <!--<TextBox IsEnabled="{Binding RtDataValues[LP3.CassettePlaced]}" Margin="10,0" Text="{Binding SetLP3CycleValue, Mode=TwoWay}" Width="80" Height="25" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" FontSize="15"/>
  544. <Button IsEnabled="{Binding RtDataValues[LP3.CassettePlaced]}" Content="Cycle Load/Unload " Width="150" Height="25" Margin="10,0" Command="{Binding LP3CycleCommand}" CommandParameter="LP3"/>-->
  545. </StackPanel>
  546. </Border>
  547. </Grid>
  548. </StackPanel>
  549. <!--<Canvas Visibility="Visible">
  550. <Button Content="平移" Canvas.Left="1600" Canvas.Top="60" Width="100" Height="30" Click="Button_Click_3"/>
  551. <ComboBox Canvas.Left="1700" Canvas.Top="60" Width="100" Height="30" x:Name="cb2">
  552. <ComboBoxItem>Right</ComboBoxItem>
  553. <ComboBoxItem>Left</ComboBoxItem>
  554. <ComboBoxItem>Origin</ComboBoxItem>
  555. </ComboBox>
  556. <Button Content="旋转" Canvas.Left="1600" Canvas.Top="100" Width="100" Height="30" Click="Button_Click"/>
  557. <ComboBox Canvas.Left="1700" Canvas.Top="100" Width="100" Height="30" x:Name="cb1">
  558. <ComboBoxItem>LLA</ComboBoxItem>
  559. <ComboBoxItem>LLB</ComboBoxItem>
  560. <ComboBoxItem>Aligner1</ComboBoxItem>
  561. <ComboBoxItem>LP1</ComboBoxItem>
  562. <ComboBoxItem>LP2</ComboBoxItem>
  563. <ComboBoxItem>LP3</ComboBoxItem>
  564. <ComboBoxItem>RightLocation</ComboBoxItem>
  565. <ComboBoxItem>LeftLocation</ComboBoxItem>
  566. </ComboBox>
  567. <Button Content="伸" Canvas.Left="1600" Canvas.Top="140" Width="100" Height="30" Click="Button_Click_1"/>
  568. <Button Content="缩" Canvas.Left="1600" Canvas.Top="180" Width="100" Height="30" Click="Button_Click_2"/>
  569. <TextBox Canvas.Left="1600" Canvas.Top="220" Text="{Binding RobotMoveInfo.BladeTarget}"/>
  570. <TextBox Canvas.Left="1700" Canvas.Top="220" Text="{Binding RobotMoveInfo.ArmTarget}"/>
  571. <TextBox Canvas.Left="1800" Canvas.Top="220" Text="{Binding RobotMoveInfo.Action}"/>
  572. </Canvas>-->
  573. <!--<Button Padding="5" Canvas.Top="120" Canvas.Left="1040" Content="PUF1Pick" Command="{Binding PUFPickCommand}" CommandParameter="PUF1"/>
  574. <Button Padding="5" Canvas.Top="120" Canvas.Left="1115" Content="PUF1Place" Command="{Binding PUFPlaceCommand}" CommandParameter="PUF1" HorizontalAlignment="Left" VerticalAlignment="Center"/>
  575. <Button Padding="5" Canvas.Top="120" Canvas.Left="1200" Content="PUF2Pick" Command="{Binding PUFPickCommand}" CommandParameter="PUF2"/>
  576. <Button Padding="5" Canvas.Top="120" Canvas.Left="1275" Content="PUF2Place" Command="{Binding PUFPlaceCommand}" CommandParameter="PUF2" HorizontalAlignment="Left" VerticalAlignment="Center"/>-->
  577. </Canvas>
  578. </UserControl>