OperationView1LPJetAB.xaml 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984
  1. <UserControl x:Class="EfemUI.Views.OperationView.OperationView1LPJetAB"
  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:Common="clr-namespace:Aitex.Sorter.Common;assembly=Aitex.Sorter.Common"
  7. xmlns:ctrlCommon="clr-namespace:Aitex.Sorter.UI.Controls.Common;assembly=Aitex.Sorter.UI"
  8. xmlns:ctrl="clr-namespace:Aitex.Sorter.UI.Controls;assembly=Aitex.Sorter.UI"
  9. xmlns:deviceControl="clr-namespace:Aitex.Core.UI.DeviceControl;assembly=MECF.Framework.UI.Core"
  10. xmlns:equipment="clr-namespace:MECF.Framework.Common.Equipment;assembly=MECF.Framework.Common"
  11. xmlns:controls1="clr-namespace:EfemUI.Controls"
  12. x:Name="root"
  13. mc:Ignorable="d"
  14. Height="800" Width="1920">
  15. <UserControl.Resources>
  16. </UserControl.Resources>
  17. <Grid IsEnabled="{Binding EnablePageControl}">
  18. <Grid.ColumnDefinitions>
  19. <ColumnDefinition Width="600"/>
  20. <ColumnDefinition Width="*" />
  21. </Grid.ColumnDefinitions>
  22. <Grid>
  23. <Grid.ColumnDefinitions>
  24. <ColumnDefinition/>
  25. <ColumnDefinition/>
  26. </Grid.ColumnDefinitions>
  27. <!--LP Component -->
  28. <Viewbox Stretch="Fill" Width="560" Height="600" Grid.Column="0">
  29. <controls1:FoupListControl x:Name="foupList" IsSlotShowOpposite="{Binding IsSlotShowOpposite}" IsEnableTextMenu="{Binding IsNoRunning}" FoupList="{Binding FoupList}" Visibility="{Binding LP1Enable, Converter={StaticResource boolVisibilityConverter}}" LoadPortCommand="{Binding LoadPortCommand}" WaferTransferOptionCommand="{Binding WaferTransferOptionCommand}" />
  30. </Viewbox>
  31. <!--Buffer Component-->
  32. <Viewbox Stretch="Fill" Width="560" Height="180" Grid.Column="1" VerticalAlignment="Top" Margin="0,100,0,0">
  33. <controls1:FoupListControl x:Name="bufferList" IsSlotShowOpposite="{Binding IsSlotShowOpposite}" IsEnableTextMenu="{Binding IsNoRunning}" FoupList="{Binding BufferList}" Visibility="{Binding BufferEnable, Converter={StaticResource boolVisibilityConverter}}"/>
  34. </Viewbox>
  35. </Grid>
  36. <Grid Grid.Column="1">
  37. <Grid.ColumnDefinitions>
  38. <ColumnDefinition Width="*" />
  39. <ColumnDefinition Width="auto" />
  40. </Grid.ColumnDefinitions>
  41. <!--<StackPanel Orientation="Horizontal">
  42. --><!--Operation Menu-->
  43. <!--<Border Grid.Row="1" HorizontalAlignment="Center" Background="White" VerticalAlignment="Top" BorderThickness="1" BorderBrush="LightGray" CornerRadius="4" Width="300" Height="110" Margin="10">
  44. <WrapPanel Margin="2" HorizontalAlignment="Center" Orientation="Vertical">
  45. <Label Content="Operation" Foreground="#035092" HorizontalContentAlignment="Center" Height="35" />
  46. <Line DockPanel.Dock="Top" X1="10" Y1="0" Y2="0" X2="280" Stroke="Black" StrokeThickness="1" />
  47. <Grid Margin="0,8,0,0">
  48. <Grid.RowDefinitions>
  49. <RowDefinition Height="0" />
  50. <RowDefinition Height="*" />
  51. </Grid.RowDefinitions>
  52. <WrapPanel Grid.Row="1" HorizontalAlignment="Center">
  53. <Button Content="Home All" Height="36" Width="120" IsEnabled="{Binding IsHomeAllButtonEnabled}" Command="{Binding InvokeCommand}" CommandParameter="HomeAll" />
  54. <Button Content="Abort" Height="36" Width="120" IsEnabled="{Binding IsAbortHomeAllButtonEnabled}" Command="{Binding InvokeCommand}" CommandParameter="AbortHomeAll" />
  55. </WrapPanel>
  56. </Grid>
  57. </WrapPanel>
  58. </Border>-->
  59. <!--Cycle Menu--><!--
  60. <Border Visibility="{Binding CycleVisibility}" Grid.Row="2" HorizontalAlignment="Center" Background="White" VerticalAlignment="Top" BorderThickness="1" BorderBrush="LightGray" CornerRadius="4" Width="440" Height="200" Margin="170,10,10,0">
  61. <WrapPanel Margin="2" HorizontalAlignment="Center" Orientation="Vertical">
  62. <Label Content="Cycle" Foreground="#035092" HorizontalContentAlignment="Center" Height="35" />
  63. <Line DockPanel.Dock="Top" X1="10" Y1="0" Y2="0" X2="370" Stroke="Black" StrokeThickness="1" />
  64. <Grid Margin="0,8,0,0">
  65. <Grid.RowDefinitions>
  66. <RowDefinition Height="45" />
  67. <RowDefinition Height="45" />
  68. <RowDefinition Height="45" />
  69. </Grid.RowDefinitions>
  70. <StackPanel Orientation="Horizontal">
  71. <TextBlock Text="Origin:" FontSize="20"></TextBlock>
  72. <ComboBox Width="120" Height="35" Margin="5,0" SelectedValue="{Binding CycleFrom}">
  73. <ComboBoxItem Content="LP1"></ComboBoxItem>
  74. --><!--<ComboBoxItem Content="LP2"></ComboBoxItem>--><!--
  75. </ComboBox>
  76. <TextBlock Text="To:" FontSize="20"></TextBlock>
  77. <ComboBox Width="120" Height="35" Margin="5" SelectedValue="{Binding CycleTo}">
  78. <ComboBoxItem Content="LP1"></ComboBoxItem>
  79. --><!--<ComboBoxItem Content="LP2"></ComboBoxItem>--><!--
  80. </ComboBox>
  81. </StackPanel>
  82. <WrapPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  83. <CheckBox VerticalContentAlignment="Center" FontSize="20" IsEnabled="{Binding Aligner1Enable}" IsChecked="{
  84. Binding Aligner1IsChecked}">Aligner1</CheckBox>
  85. --><!--<Separator Opacity="0" Width="8"/>
  86. <CheckBox VerticalContentAlignment="Center" FontSize="20" IsEnabled="{Binding Aligner2Enable}" IsChecked="{Binding Aligner2IsChecked}">Aligner2</CheckBox>--><!--
  87. <Separator Opacity="0" Width="8"/>
  88. <CheckBox VerticalContentAlignment="Center" IsEnabled="False" FontSize="20" IsChecked="{Binding Ll1IsChecked}">PMA</CheckBox>
  89. --><!--<Separator Opacity="0" Width="8"/>
  90. <CheckBox VerticalContentAlignment="Center" FontSize="20" IsChecked="{Binding Ll2IsChecked}">PMB</CheckBox>-->
  91. <!--<Separator Opacity="0" Width="8"/>
  92. <CheckBox VerticalContentAlignment="Center" FontSize="20" IsEnabled="{Binding CoolingBuffer1Enable}" IsChecked="{Binding CoolingBuffer1IsChecked}">CoolingBuffer1</CheckBox>
  93. <Separator Opacity="0" Width="8"/>
  94. <CheckBox VerticalContentAlignment="Center" FontSize="20" IsEnabled="{Binding CoolingBuffer2Enable}" IsChecked="{Binding CoolingBuffer2IsChecked}">CoolingBuffer2</CheckBox>--><!--
  95. <Separator Opacity="0" Width="8"/>
  96. <CheckBox VerticalContentAlignment="Center" FontSize="20" IsChecked="{Binding Buffer1IsChecked}">Buffer1</CheckBox>
  97. </WrapPanel>
  98. <WrapPanel Grid.Row="2" HorizontalAlignment="Center">
  99. <Button Content="Start" Height="36" Width="100" IsEnabled="{Binding IsHomeAllButtonEnabled}" Command="{Binding StartCycleCommand}" CommandParameter="Cycle" />
  100. <Button Content="Stop" Height="36" Width="100" IsEnabled="{Binding IsHomeAllButtonEnabled}" Command="{Binding InvokeCommand}" CommandParameter="Stop" />
  101. --><!--Button Content="Benchmark" Height="36" Width="100" IsEnabled="{Binding IsHomeAllButtonEnabled}" Command="{Binding StartCycleCommand}" CommandParameter="Benchmark" /--><!--
  102. </WrapPanel>
  103. </Grid>
  104. </WrapPanel>
  105. </Border>
  106. </StackPanel>-->
  107. <!--Efem UI-->
  108. <Grid Margin="260,280,40,89">
  109. <controls1:EFEM1LPJetAB IsEnableTextMenu="{Binding IsNoRunning}" x:Name="efem" Aligner1Wafer="{Binding Aligner1Wafer}" Aligner2Wafer="{Binding Aligner2Wafer}" CoolingBuffer1Wafer="{Binding CoolingBuffer1Wafer}" CoolingBuffer2Wafer="{Binding CoolingBuffer2Wafer}" Margin="-30,0,-30,-24"/>
  110. </Grid>
  111. <!--Robot WaferInfo Component-->
  112. <Border HorizontalAlignment="Left" BorderThickness="1" BorderBrush="#84a567" Height="158" Width="230" Margin="21,466,0,176" >
  113. <DockPanel Background="{StaticResource Table_BG_Content}">
  114. <Label Content="Robot" HorizontalContentAlignment="Center" FontWeight="Bold" FontSize="15" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  115. <Grid>
  116. <Grid.RowDefinitions>
  117. <RowDefinition Height="*" />
  118. <RowDefinition Height="*" />
  119. <RowDefinition Height="2*" />
  120. </Grid.RowDefinitions>
  121. <Grid.ColumnDefinitions>
  122. <ColumnDefinition Width="54" />
  123. <ColumnDefinition Width="*" />
  124. </Grid.ColumnDefinitions>
  125. <ctrlCommon:LED Grid.Row="0" Grid.Column="0" On="{Binding IsRightArmPressureSensorON}" />
  126. <ctrl:Wafer IsEnableTextMenu="{Binding IsNoRunning}" WaferIDDisplayMode="WaferOrigin" Grid.Row="0" Height="23.6" Margin="0,1,0,6" Padding="0" Grid.Column="1" Slot="1" WaferTransferOptionCommand="{Binding WaferTransferOptionCommand}" WaferItem="{Binding RobotWafer2}" Station="{Binding Source={x:Static equipment:ModuleName.Robot}}" ShowSlot="True" />
  127. <ctrlCommon:LED Grid.Row="1" On="{Binding IsLeftArmPressureSensorON}" />
  128. <ctrl:Wafer IsEnableTextMenu="{Binding IsNoRunning}" WaferIDDisplayMode="WaferOrigin" Grid.Row="1" Height="23.6" Margin="0,0,0,8" Padding="0" Grid.Column="1" Slot="0" WaferTransferOptionCommand="{Binding WaferTransferOptionCommand}" WaferItem="{Binding RobotWafer1}" Station="{Binding Source={x:Static equipment:ModuleName.Robot}}" ShowSlot="True" />
  129. <Border Grid.Row="2" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  130. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  131. <Grid.ColumnDefinitions>
  132. <ColumnDefinition Width="*" />
  133. <ColumnDefinition Width="*" />
  134. </Grid.ColumnDefinitions>
  135. <Grid.RowDefinitions>
  136. <RowDefinition Height="30" />
  137. <RowDefinition Height="30" />
  138. </Grid.RowDefinitions>
  139. <Label Content="Status" FontSize="18" HorizontalAlignment="Center"/>
  140. <Label Content="{Binding RobotState}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" Background="{Binding RobotState,Converter={StaticResource deviceStateColorConverter}}"/>
  141. <Label Content="Speed" FontSize="18" Grid.Row="1" HorizontalAlignment="Center"/>
  142. <Label Content="{Binding CurrentReadSpeedData}" Grid.Row="1" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}"/>
  143. </Grid>
  144. </Border>
  145. </Grid>
  146. </DockPanel>
  147. </Border>
  148. <!--PM WaferInfo Component-->
  149. <Border Visibility="{Binding PMAEnable,Converter={StaticResource boolVisibilityConverter}}" HorizontalAlignment="Left" VerticalAlignment="Top" BorderThickness="1" BorderBrush="#84a567" Height="70" Width="230" Margin="21,332,0,0">
  150. <DockPanel Background="{StaticResource Table_BG_Content}">
  151. <Label Content="PM" HorizontalContentAlignment="Center" DockPanel.Dock="Top" FontWeight="Bold" FontSize="15" Style="{StaticResource label}" Width="250" Height="30" />
  152. <Grid>
  153. <Grid.ColumnDefinitions>
  154. <ColumnDefinition Width="auto" />
  155. <ColumnDefinition Width="168" />
  156. <ColumnDefinition Width="32"/>
  157. </Grid.ColumnDefinitions>
  158. <Grid.RowDefinitions>
  159. <RowDefinition Height="40" />
  160. </Grid.RowDefinitions>
  161. <Label Content="PMA" FontSize="18" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Margin="3,5,165,-5" />
  162. <!--<Label Content="PM2" Grid.Row="1" Grid.Column="0" />-->
  163. <ctrl:Wafer WaferIDDisplayMode="WaferOrigin" IsEnableTextMenu="{Binding IsNoRunning}" Grid.Row="0" Height="23.6" Margin="31,5,0,11" Padding="0" Slot="0" WaferTransferOptionCommand="{Binding WaferTransferOptionCommand}" WaferItem="{Binding LL1Wafer}" Station="LL1" ShowSlot="True" Grid.ColumnSpan="3" />
  164. <!-- <ctrl:Wafer Grid.Row="1" Height="23.6" Margin="0,4" Padding="0" Grid.Column="1" Slot="0" WaferTransferOptionCommand="{Binding WaferTransferOptionCommand}" WaferItem="{Binding LL2Wafer}" Station="LL2" ShowSlot="True" Grid.ColumnSpan="2" />-->
  165. </Grid>
  166. </DockPanel>
  167. </Border>
  168. <!--Right Menus-->
  169. <Border Grid.Row="0" Grid.RowSpan="3" Grid.Column="1" HorizontalAlignment="Left" VerticalAlignment="Top" BorderThickness="1" BorderBrush="#84a567" Height="750" Width="400">
  170. <DockPanel Background="{StaticResource Table_BG_Content}">
  171. <!--<Label Content="Cycle" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="400" Height="30" />-->
  172. <Grid>
  173. <Grid.Resources>
  174. <Style TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
  175. <Setter Property="VerticalAlignment" Value="Center" />
  176. <Setter Property="HorizontalAlignment" Value="Center" />
  177. </Style>
  178. </Grid.Resources>
  179. <Grid.RowDefinitions>
  180. <RowDefinition Height="40" />
  181. <RowDefinition Height="60" />
  182. <RowDefinition Height="40" />
  183. <RowDefinition Height="210" />
  184. <RowDefinition Height="40" />
  185. <RowDefinition Height="170" />
  186. <RowDefinition Height="40" />
  187. <RowDefinition Height="130" />
  188. </Grid.RowDefinitions>
  189. <Label Content="Operation" FontSize="18" FontWeight="Bold" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" Width="400" Style="{StaticResource label}" />
  190. <Grid Grid.Row="1">
  191. <Grid.ColumnDefinitions>
  192. <ColumnDefinition/>
  193. <ColumnDefinition/>
  194. </Grid.ColumnDefinitions>
  195. <Button Template="{StaticResource realism_button}" VerticalAlignment="Center" HorizontalAlignment="Left" Content="Home All" Height="36" Width="120" IsEnabled="{Binding IsHomeAllButtonEnabled}" Command="{Binding InvokeCommand}" CommandParameter="HomeAll" Margin="58,0,0,0" />
  196. <Button Template="{StaticResource realism_button}" Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Left" Content="Abort" Height="36" Width="120" IsEnabled="{Binding IsAbortHomeAllButtonEnabled}" Command="{Binding InvokeCommand}" CommandParameter="AbortHomeAll" Margin="23,0,0,0" />
  197. </Grid>
  198. <Label Content="Cycle" Grid.Row="2" FontSize="18" FontWeight="Bold" Grid.Column="0" Grid.ColumnSpan="3" Width="400" Style="{StaticResource label}" />
  199. <Grid Grid.Row="3">
  200. <Grid.RowDefinitions>
  201. <RowDefinition Height="1.2*"/>
  202. <RowDefinition Height="1.5*"/>
  203. <RowDefinition Height="1*"/>
  204. </Grid.RowDefinitions>
  205. <StackPanel Orientation="Horizontal" >
  206. <TextBlock Text="Origin:" FontSize="20" Margin="20,0,0,0"></TextBlock>
  207. <ComboBox Width="110" Height="35" Margin="5,0" SelectedValue="{Binding CycleFrom}">
  208. <ComboBoxItem Content="LP1"></ComboBoxItem>
  209. <!--<ComboBoxItem Content="LP2"></ComboBoxItem>-->
  210. </ComboBox>
  211. <TextBlock Text="To:" FontSize="20" Margin="10,0,0,0"></TextBlock>
  212. <ComboBox Width="110" Height="35" Margin="5" SelectedValue="{Binding CycleTo}">
  213. <ComboBoxItem Content="LP1"></ComboBoxItem>
  214. <!--<ComboBoxItem Content="LP2"></ComboBoxItem>-->
  215. </ComboBox>
  216. </StackPanel>
  217. <WrapPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center">
  218. <CheckBox Margin="0,0,10,7" VerticalContentAlignment="Center" FontSize="20" Visibility="{Binding Aligner1Enable,Converter={StaticResource boolVisibilityConverter},ConverterParameter={StaticResource True}}" IsChecked="{Binding Aligner1IsChecked}">Aligner1</CheckBox>
  219. <CheckBox Margin="0,0,10,7" VerticalContentAlignment="Center" FontSize="20" Visibility="{Binding Aligner2Enable,Converter={StaticResource boolVisibilityConverter},ConverterParameter={StaticResource True}}" IsChecked="{Binding Aligner2IsChecked}">Aligner2</CheckBox>
  220. <CheckBox Margin="0,0,10,7" VerticalContentAlignment="Center" IsEnabled="False" Visibility="{Binding PMAEnable,Converter={StaticResource boolVisibilityConverter},ConverterParameter={StaticResource True}}" FontSize="20" IsChecked="{Binding Ll1IsChecked}">PMA</CheckBox>
  221. <CheckBox Margin="0,0,10,7" VerticalContentAlignment="Center" IsEnabled="False" FontSize="20" Visibility="{Binding PMBEnable,Converter={StaticResource boolVisibilityConverter},ConverterParameter={StaticResource True}}" IsChecked="{Binding Ll2IsChecked}">PMB</CheckBox>
  222. <CheckBox Margin="0,0,10,7" VerticalContentAlignment="Center" FontSize="20" Visibility="{Binding CoolingBuffer1Enable,Converter={StaticResource boolVisibilityConverter},ConverterParameter={StaticResource True}}" IsChecked="{Binding CoolingBuffer1IsChecked}">Cooling1</CheckBox>
  223. <CheckBox Margin="0,0,10,7" VerticalContentAlignment="Center" FontSize="20" Visibility="{Binding CoolingBuffer2Enable,Converter={StaticResource boolVisibilityConverter},ConverterParameter={StaticResource True}}" IsChecked="{Binding CoolingBuffer2IsChecked}">Cooling2</CheckBox>
  224. <CheckBox Margin="0,0,10,7" VerticalContentAlignment="Center" FontSize="20" Visibility="{Binding BufferEnable,Converter={StaticResource boolVisibilityConverter},ConverterParameter={StaticResource True}}" IsChecked="{Binding BufferIsChecked}">Buffer</CheckBox>
  225. <CheckBox Margin="0,0,10,7" VerticalContentAlignment="Center" FontSize="20" Visibility="{Binding Buffer1Enable,Converter={StaticResource boolVisibilityConverter},ConverterParameter={StaticResource True}}" IsChecked="{Binding Buffer1IsChecked}">Buffer1</CheckBox>
  226. <CheckBox Margin="0,0,10,7" VerticalContentAlignment="Center" FontSize="20" Visibility="{Binding Buffer2Enable,Converter={StaticResource boolVisibilityConverter},ConverterParameter={StaticResource True}}" IsChecked="{Binding Buffer1IsChecked}">Buffer2</CheckBox>
  227. </WrapPanel>
  228. <StackPanel Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal" Width="340" Margin="55,0,0,0">
  229. <Button Template="{StaticResource realism_button}" Content="Start" VerticalAlignment="Center" Height="36" Width="120" IsEnabled="{Binding IsHomeAllButtonEnabled}" Command="{Binding StartCycleCommand}" CommandParameter="Cycle" />
  230. <Button Template="{StaticResource realism_button}" Content="Stop" VerticalAlignment="Center" Height="36" Width="120" IsEnabled="{Binding IsHomeAllButtonEnabled}" Command="{Binding InvokeCommand}" CommandParameter="Stop" Margin="40,0,0,0"/>
  231. <!--Button Content="Benchmark" Height="36" Width="100" IsEnabled="{Binding IsHomeAllButtonEnabled}" Command="{Binding StartCycleCommand}" CommandParameter="Benchmark" /-->
  232. </StackPanel>
  233. </Grid>
  234. <Label Content="Process Information" FontSize="18" FontWeight="Bold" Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="3" Width="400" Style="{StaticResource label}" />
  235. <Grid Grid.Row="5" Grid.ColumnSpan="5" ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  236. <Grid.Resources>
  237. <Style TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
  238. <Setter Property="VerticalAlignment" Value="Center" />
  239. <Setter Property="HorizontalAlignment" Value="Left" />
  240. <Setter Property="Margin" Value="10,0,0,0" />
  241. </Style>
  242. </Grid.Resources>
  243. <Grid.ColumnDefinitions>
  244. <ColumnDefinition Width="194" />
  245. <ColumnDefinition />
  246. </Grid.ColumnDefinitions>
  247. <Grid.RowDefinitions>
  248. <RowDefinition Height="40" />
  249. <RowDefinition Height="40" />
  250. <RowDefinition Height="40" />
  251. <RowDefinition Height="40" />
  252. </Grid.RowDefinitions>
  253. <Label Grid.Row="0" Content="Elapse Time(s)" Margin="10,4,0,5" Height="32" Width="143" />
  254. <Label Grid.Row="0" Grid.Column="1" Content="{Binding TransferTime}" Height="32" Margin="0,4,-0,5" Width="209" />
  255. <Label Grid.Row="1" Content="Wafer Count" Margin="10,5,0,4" Height="32" Width="122" />
  256. <Label Grid.Row="1" Grid.Column="1" Content="{Binding TransferCount}" Height="32" Margin="0,4,0,5" Width="209" />
  257. <Label Grid.Row="2" Content="Throughput(WPH)" Margin="10,4,0,5" Height="32" Width="172" />
  258. <Label Grid.Row="2" Grid.Column="1" Content="{Binding TranserThroughput}" Height="32" Margin="0,4,-0,5" Width="209" />
  259. <Label Grid.Row="3" Content="Cycle Count" Margin="10,5,0,4" Height="32" Width="119" />
  260. <Label Grid.Row="3" Grid.Column="1" Content="{Binding CycleCountDisplay}" Height="32" Margin="0,4,-0,5" Width="209" />
  261. </Grid>
  262. <Label Content="FFU Information" FontSize="18" FontWeight="Bold" Grid.Row="6" Grid.Column="0" Grid.ColumnSpan="3" Width="400" Style="{StaticResource label}" />
  263. <Grid Grid.Row="7" Grid.ColumnSpan="5" ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  264. <Grid.Resources>
  265. <Style TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
  266. <Setter Property="VerticalAlignment" Value="Center" />
  267. <Setter Property="HorizontalAlignment" Value="Left" />
  268. <Setter Property="Margin" Value="10,0,0,0" />
  269. </Style>
  270. </Grid.Resources>
  271. <Grid.ColumnDefinitions>
  272. <ColumnDefinition Width="180" />
  273. <ColumnDefinition Width="29*" />
  274. <ColumnDefinition Width="190*"/>
  275. </Grid.ColumnDefinitions>
  276. <Grid.RowDefinitions>
  277. <RowDefinition Height="40" />
  278. <RowDefinition Height="40" />
  279. <RowDefinition Height="50" />
  280. </Grid.RowDefinitions>
  281. <Label Grid.Row="0" Content="FFU1 Speed" Margin="10,4,0,4" />
  282. <Label Grid.Row="0" Grid.Column="1" Content="{Binding FFU1Speed}" Grid.ColumnSpan="2" />
  283. <Label Grid.Row="1" Content="FFU Set Speed" Margin="10,4,0,4" />
  284. <TextBox x:Name="txtFFUSetpoint" Grid.Row="1" Grid.Column="1" Margin="10,2,10,2" Grid.ColumnSpan="2" Height="Auto"/>
  285. <Button Template="{StaticResource realism_button}" Grid.Row="2" Grid.Column="1" Command="{Binding SetFFUCommand}"
  286. CommandParameter="{Binding Text,ElementName=txtFFUSetpoint}"
  287. Margin="10,2,10,2" Content="Set FFU Speed" VerticalAlignment="Top" Width="Auto" Height="37" Grid.ColumnSpan="2"/>
  288. </Grid>
  289. </Grid>
  290. </DockPanel>
  291. </Border>
  292. <!--LP1 Wafer Setting Component-->
  293. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="158" Width="195" Margin="260,0,0,10">
  294. <DockPanel Background="{StaticResource Table_BG_Content}">
  295. <Label Content="LP1" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  296. <Grid>
  297. <Grid.RowDefinitions>
  298. <RowDefinition Height="*" />
  299. <RowDefinition Height="*" />
  300. <RowDefinition Height="*" />
  301. <RowDefinition Height="*" />
  302. </Grid.RowDefinitions>
  303. <Grid.ColumnDefinitions>
  304. <ColumnDefinition Width="100" />
  305. <ColumnDefinition Width="*" />
  306. </Grid.ColumnDefinitions>
  307. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="LP1" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  308. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="LP1" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  309. <Border Grid.Row="1" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  310. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  311. <Grid.ColumnDefinitions>
  312. <ColumnDefinition Width="*" />
  313. <ColumnDefinition Width="*" />
  314. </Grid.ColumnDefinitions>
  315. <Grid.RowDefinitions>
  316. <RowDefinition Height="30" />
  317. </Grid.RowDefinitions>
  318. <Label Content="Type"/>
  319. <Label Content="{Binding LP1WaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}"/>
  320. </Grid>
  321. </Border>
  322. <Button Grid.Column="0" Grid.Row="2" Command="{Binding SetLPSlot13}" CommandParameter="LP1" Margin="8,0,0,0" Width="80" Height="25" Content="13'" VerticalAlignment="Center" />
  323. <Button Grid.Column="1" Grid.Row="2" Command="{Binding SetLPSlot25}" CommandParameter="LP1" Margin="0,0,0,0" Width="80" Height="25" Content="25'" VerticalAlignment="Center" />
  324. <Border Grid.Row="3" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  325. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  326. <Grid.ColumnDefinitions>
  327. <ColumnDefinition Width="*" />
  328. <ColumnDefinition Width="*" />
  329. </Grid.ColumnDefinitions>
  330. <Grid.RowDefinitions>
  331. <RowDefinition Height="30" />
  332. </Grid.RowDefinitions>
  333. <Label Content="Slots"/>
  334. <Label Content="{Binding LP1ValidSlotsNumber}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}"/>
  335. </Grid>
  336. </Border>
  337. </Grid>
  338. </DockPanel>
  339. </Border>
  340. <!--LP2 Wafer Setting Component-->
  341. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="158" Width="195" Margin="472,0,0,10">
  342. <DockPanel Background="{StaticResource Table_BG_Content}">
  343. <Label Content="LP2" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  344. <Grid>
  345. <Grid.RowDefinitions>
  346. <RowDefinition Height="*" />
  347. <RowDefinition Height="*" />
  348. <RowDefinition Height="*" />
  349. <RowDefinition Height="*" />
  350. </Grid.RowDefinitions>
  351. <Grid.ColumnDefinitions>
  352. <ColumnDefinition Width="100" />
  353. <ColumnDefinition Width="*" />
  354. </Grid.ColumnDefinitions>
  355. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="LP2" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  356. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="LP2" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  357. <Border Grid.Row="1" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  358. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  359. <Grid.ColumnDefinitions>
  360. <ColumnDefinition Width="*" />
  361. <ColumnDefinition Width="*" />
  362. </Grid.ColumnDefinitions>
  363. <Grid.RowDefinitions>
  364. <RowDefinition Height="Auto" />
  365. </Grid.RowDefinitions>
  366. <Label Content="Type"/>
  367. <Label Content="{Binding LP2WaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  368. </Grid>
  369. </Border>
  370. <Button Grid.Column="0" Grid.Row="2" Command="{Binding SetLPSlot13}" CommandParameter="LP2" Margin="8,0,0,0" Width="80" Height="25" Content="13'" VerticalAlignment="Center" />
  371. <Button Grid.Column="1" Grid.Row="2" Command="{Binding SetLPSlot25}" CommandParameter="LP2" Margin="0,0,0,0" Width="80" Height="25" Content="25'" VerticalAlignment="Center" />
  372. <Border Grid.Row="4" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  373. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent" Margin="1,-1,-1,1">
  374. <Grid.ColumnDefinitions>
  375. <ColumnDefinition Width="*" />
  376. <ColumnDefinition Width="*" />
  377. </Grid.ColumnDefinitions>
  378. <Grid.RowDefinitions>
  379. <RowDefinition Height="Auto" />
  380. </Grid.RowDefinitions>
  381. <Label Content="Slots"/>
  382. <Label Content="{Binding LP2ValidSlotsNumber}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  383. </Grid>
  384. </Border>
  385. </Grid>
  386. </DockPanel>
  387. </Border>
  388. <!--Aligner1 Wafer Setting Component-->
  389. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="715,0,0,278">
  390. <DockPanel Background="{StaticResource Table_BG_Content}">
  391. <Label Content="Aligner1" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  392. <Grid>
  393. <Grid.RowDefinitions>
  394. <RowDefinition Height="*" />
  395. <RowDefinition Height="*" />
  396. </Grid.RowDefinitions>
  397. <Grid.ColumnDefinitions>
  398. <ColumnDefinition Width="100" />
  399. <ColumnDefinition Width="*" />
  400. </Grid.ColumnDefinitions>
  401. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="Aligner1" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  402. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="Aligner1" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  403. <Border Grid.Row="2" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  404. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  405. <Grid.ColumnDefinitions>
  406. <ColumnDefinition Width="*" />
  407. <ColumnDefinition Width="*" />
  408. </Grid.ColumnDefinitions>
  409. <Grid.RowDefinitions>
  410. <RowDefinition Height="Auto" />
  411. </Grid.RowDefinitions>
  412. <Label Content="Type"/>
  413. <Label Content="{Binding Aligner1WaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  414. </Grid>
  415. </Border>
  416. </Grid>
  417. </DockPanel>
  418. </Border>
  419. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="715,0,0,278">
  420. <DockPanel Background="{StaticResource Table_BG_Content}">
  421. <Label Content="Aligner1" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  422. <Grid>
  423. <Grid.RowDefinitions>
  424. <RowDefinition Height="*" />
  425. <RowDefinition Height="*" />
  426. </Grid.RowDefinitions>
  427. <Grid.ColumnDefinitions>
  428. <ColumnDefinition Width="70" />
  429. <ColumnDefinition Width="70" />
  430. <ColumnDefinition Width="*" />
  431. </Grid.ColumnDefinitions>
  432. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferSize4}" CommandParameter="Aligner1" Margin="8,0,0,0" Width="40" Height="25" Content="4'" VerticalAlignment="Center" />
  433. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferSize6}" CommandParameter="Aligner1" Margin="0,0,0,0" Width="40" Height="25" Content="6'" VerticalAlignment="Center" />
  434. <Button Grid.Column="2" Grid.Row="0" Command="{Binding SetWaferSize8}" CommandParameter="Aligner1" Margin="0,0,0,0" Width="40" Height="25" Content="8'" VerticalAlignment="Center" />
  435. <Border Grid.Row="2" Grid.ColumnSpan="3" BorderBrush="Gray" BorderThickness="1">
  436. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  437. <Grid.ColumnDefinitions>
  438. <ColumnDefinition Width="*" />
  439. <ColumnDefinition Width="*" />
  440. </Grid.ColumnDefinitions>
  441. <Grid.RowDefinitions>
  442. <RowDefinition Height="Auto" />
  443. </Grid.RowDefinitions>
  444. <Label Content="Size"/>
  445. <Label Content="{Binding WaferSizeAligner1}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  446. </Grid>
  447. </Border>
  448. </Grid>
  449. </DockPanel>
  450. </Border>
  451. <!--Aligner2 Wafer Setting Component-->
  452. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="715,0,0,382">
  453. <DockPanel Background="{StaticResource Table_BG_Content}">
  454. <Label Content="Aligner2" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  455. <Grid>
  456. <Grid.RowDefinitions>
  457. <RowDefinition Height="*" />
  458. <RowDefinition Height="*" />
  459. </Grid.RowDefinitions>
  460. <Grid.ColumnDefinitions>
  461. <ColumnDefinition Width="100" />
  462. <ColumnDefinition Width="*" />
  463. </Grid.ColumnDefinitions>
  464. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="Aligner2" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  465. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="Aligner2" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  466. <Border Grid.Row="2" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  467. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  468. <Grid.ColumnDefinitions>
  469. <ColumnDefinition Width="*" />
  470. <ColumnDefinition Width="*" />
  471. </Grid.ColumnDefinitions>
  472. <Grid.RowDefinitions>
  473. <RowDefinition Height="Auto" />
  474. </Grid.RowDefinitions>
  475. <Label Content="Type"/>
  476. <Label Content="{Binding Aligner2WaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  477. </Grid>
  478. </Border>
  479. </Grid>
  480. </DockPanel>
  481. </Border>
  482. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="715,0,0,382">
  483. <DockPanel Background="{StaticResource Table_BG_Content}">
  484. <Label Content="Aligner2" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  485. <Grid>
  486. <Grid.RowDefinitions>
  487. <RowDefinition Height="*" />
  488. <RowDefinition Height="*" />
  489. </Grid.RowDefinitions>
  490. <Grid.ColumnDefinitions>
  491. <ColumnDefinition Width="70" />
  492. <ColumnDefinition Width="70" />
  493. <ColumnDefinition Width="*" />
  494. </Grid.ColumnDefinitions>
  495. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferSize4}" CommandParameter="Aligner2" Margin="8,0,0,0" Width="40" Height="25" Content="4'" VerticalAlignment="Center" />
  496. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferSize6}" CommandParameter="Aligner2" Margin="0,0,0,0" Width="40" Height="25" Content="6'" VerticalAlignment="Center" />
  497. <Button Grid.Column="2" Grid.Row="0" Command="{Binding SetWaferSize8}" CommandParameter="Aligner2" Margin="0,0,0,0" Width="40" Height="25" Content="8'" VerticalAlignment="Center" />
  498. <Border Grid.Row="2" Grid.ColumnSpan="3" BorderBrush="Gray" BorderThickness="1">
  499. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  500. <Grid.ColumnDefinitions>
  501. <ColumnDefinition Width="*" />
  502. <ColumnDefinition Width="*" />
  503. </Grid.ColumnDefinitions>
  504. <Grid.RowDefinitions>
  505. <RowDefinition Height="Auto" />
  506. </Grid.RowDefinitions>
  507. <Label Content="Size"/>
  508. <Label Content="{Binding WaferSizeAligner2}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  509. </Grid>
  510. </Border>
  511. </Grid>
  512. </DockPanel>
  513. </Border>
  514. <!--PMA Wafer Setting Component-->
  515. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="25,0,0,485">
  516. <DockPanel Background="{StaticResource Table_BG_Content}">
  517. <Label Content="PMA" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  518. <Grid>
  519. <Grid.RowDefinitions>
  520. <RowDefinition Height="*" />
  521. <RowDefinition Height="*" />
  522. </Grid.RowDefinitions>
  523. <Grid.ColumnDefinitions>
  524. <ColumnDefinition Width="100" />
  525. <ColumnDefinition Width="*" />
  526. </Grid.ColumnDefinitions>
  527. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="LL1" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  528. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="LL1" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  529. <Border Grid.Row="2" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  530. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  531. <Grid.ColumnDefinitions>
  532. <ColumnDefinition Width="*" />
  533. <ColumnDefinition Width="*" />
  534. </Grid.ColumnDefinitions>
  535. <Grid.RowDefinitions>
  536. <RowDefinition Height="Auto" />
  537. </Grid.RowDefinitions>
  538. <Label Content="Type"/>
  539. <Label Content="{Binding PMAWaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  540. </Grid>
  541. </Border>
  542. </Grid>
  543. </DockPanel>
  544. </Border>
  545. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="25,0,0,485">
  546. <DockPanel Background="{StaticResource Table_BG_Content}">
  547. <Label Content="PMA" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  548. <Grid>
  549. <Grid.RowDefinitions>
  550. <RowDefinition Height="*" />
  551. <RowDefinition Height="*" />
  552. </Grid.RowDefinitions>
  553. <Grid.ColumnDefinitions>
  554. <ColumnDefinition Width="70" />
  555. <ColumnDefinition Width="70" />
  556. <ColumnDefinition Width="*" />
  557. </Grid.ColumnDefinitions>
  558. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferSize4}" CommandParameter="LL1" Margin="8,0,0,0" Width="40" Height="25" Content="4'" VerticalAlignment="Center" />
  559. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferSize6}" CommandParameter="LL1" Margin="0,0,0,0" Width="40" Height="25" Content="6'" VerticalAlignment="Center" />
  560. <Button Grid.Column="2" Grid.Row="0" Command="{Binding SetWaferSize8}" CommandParameter="LL1" Margin="0,0,0,0" Width="40" Height="25" Content="8'" VerticalAlignment="Center" />
  561. <Border Grid.Row="2" Grid.ColumnSpan="3" BorderBrush="Gray" BorderThickness="1">
  562. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  563. <Grid.ColumnDefinitions>
  564. <ColumnDefinition Width="*" />
  565. <ColumnDefinition Width="*" />
  566. </Grid.ColumnDefinitions>
  567. <Grid.RowDefinitions>
  568. <RowDefinition Height="Auto" />
  569. </Grid.RowDefinitions>
  570. <Label Content="Size"/>
  571. <Label Content="{Binding WaferSizeLL1}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  572. </Grid>
  573. </Border>
  574. </Grid>
  575. </DockPanel>
  576. </Border>
  577. <!--PMB Wafer Setting Component-->
  578. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="715,0,0,485">
  579. <DockPanel Background="{StaticResource Table_BG_Content}">
  580. <Label Content="PMB" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  581. <Grid>
  582. <Grid.RowDefinitions>
  583. <RowDefinition Height="*" />
  584. <RowDefinition Height="*" />
  585. </Grid.RowDefinitions>
  586. <Grid.ColumnDefinitions>
  587. <ColumnDefinition Width="100" />
  588. <ColumnDefinition Width="*" />
  589. </Grid.ColumnDefinitions>
  590. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="LL2" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  591. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="LL2" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  592. <Border Grid.Row="2" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  593. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  594. <Grid.ColumnDefinitions>
  595. <ColumnDefinition Width="*" />
  596. <ColumnDefinition Width="*" />
  597. </Grid.ColumnDefinitions>
  598. <Grid.RowDefinitions>
  599. <RowDefinition Height="Auto" />
  600. </Grid.RowDefinitions>
  601. <Label Content="Type"/>
  602. <Label Content="{Binding PMBWaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  603. </Grid>
  604. </Border>
  605. </Grid>
  606. </DockPanel>
  607. </Border>
  608. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="715,0,0,485">
  609. <DockPanel Background="{StaticResource Table_BG_Content}">
  610. <Label Content="PMB" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  611. <Grid>
  612. <Grid.RowDefinitions>
  613. <RowDefinition Height="*" />
  614. <RowDefinition Height="*" />
  615. </Grid.RowDefinitions>
  616. <Grid.ColumnDefinitions>
  617. <ColumnDefinition Width="70" />
  618. <ColumnDefinition Width="70" />
  619. <ColumnDefinition Width="*" />
  620. </Grid.ColumnDefinitions>
  621. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferSize4}" CommandParameter="LL2" Margin="8,0,0,0" Width="40" Height="25" Content="4'" VerticalAlignment="Center" />
  622. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferSize6}" CommandParameter="LL2" Margin="0,0,0,0" Width="40" Height="25" Content="6'" VerticalAlignment="Center" />
  623. <Button Grid.Column="2" Grid.Row="0" Command="{Binding SetWaferSize8}" CommandParameter="LL2" Margin="0,0,0,0" Width="40" Height="25" Content="8'" VerticalAlignment="Center" />
  624. <Border Grid.Row="2" Grid.ColumnSpan="3" BorderBrush="Gray" BorderThickness="1">
  625. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  626. <Grid.ColumnDefinitions>
  627. <ColumnDefinition Width="*" />
  628. <ColumnDefinition Width="*" />
  629. </Grid.ColumnDefinitions>
  630. <Grid.RowDefinitions>
  631. <RowDefinition Height="Auto" />
  632. </Grid.RowDefinitions>
  633. <Label Content="Size"/>
  634. <Label Content="{Binding WaferSizeLL2}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  635. </Grid>
  636. </Border>
  637. </Grid>
  638. </DockPanel>
  639. </Border>
  640. <!--Cooling1 Wafer Setting Component-->
  641. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="25,0,0,278">
  642. <DockPanel Background="{StaticResource Table_BG_Content}">
  643. <Label Content="Cooling1" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  644. <Grid>
  645. <Grid.RowDefinitions>
  646. <RowDefinition Height="*" />
  647. <RowDefinition Height="*" />
  648. </Grid.RowDefinitions>
  649. <Grid.ColumnDefinitions>
  650. <ColumnDefinition Width="100" />
  651. <ColumnDefinition Width="*" />
  652. </Grid.ColumnDefinitions>
  653. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="CoolingBuffer1" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  654. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="CoolingBuffer1" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  655. <Border Grid.Row="2" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  656. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  657. <Grid.ColumnDefinitions>
  658. <ColumnDefinition Width="*" />
  659. <ColumnDefinition Width="*" />
  660. </Grid.ColumnDefinitions>
  661. <Grid.RowDefinitions>
  662. <RowDefinition Height="Auto" />
  663. </Grid.RowDefinitions>
  664. <Label Content="Type"/>
  665. <Label Content="{Binding Cooling1WaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  666. </Grid>
  667. </Border>
  668. </Grid>
  669. </DockPanel>
  670. </Border>
  671. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="25,0,0,278">
  672. <DockPanel Background="{StaticResource Table_BG_Content}">
  673. <Label Content="Cooling1" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  674. <Grid>
  675. <Grid.RowDefinitions>
  676. <RowDefinition Height="*" />
  677. <RowDefinition Height="*" />
  678. </Grid.RowDefinitions>
  679. <Grid.ColumnDefinitions>
  680. <ColumnDefinition Width="70" />
  681. <ColumnDefinition Width="70" />
  682. <ColumnDefinition Width="*" />
  683. </Grid.ColumnDefinitions>
  684. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferSize4}" CommandParameter="CoolingBuffer1" Margin="8,0,0,0" Width="40" Height="25" Content="4'" VerticalAlignment="Center" />
  685. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferSize6}" CommandParameter="CoolingBuffer1" Margin="0,0,0,0" Width="40" Height="25" Content="6'" VerticalAlignment="Center" />
  686. <Button Grid.Column="2" Grid.Row="0" Command="{Binding SetWaferSize8}" CommandParameter="CoolingBuffer1" Margin="0,0,0,0" Width="40" Height="25" Content="8'" VerticalAlignment="Center" />
  687. <Border Grid.Row="2" Grid.ColumnSpan="3" BorderBrush="Gray" BorderThickness="1">
  688. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  689. <Grid.ColumnDefinitions>
  690. <ColumnDefinition Width="*" />
  691. <ColumnDefinition Width="*" />
  692. </Grid.ColumnDefinitions>
  693. <Grid.RowDefinitions>
  694. <RowDefinition Height="Auto" />
  695. </Grid.RowDefinitions>
  696. <Label Content="Size"/>
  697. <Label Content="{Binding WaferSizeCoolingBuffer1}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  698. </Grid>
  699. </Border>
  700. </Grid>
  701. </DockPanel>
  702. </Border>
  703. <!--Cooling2 Wafer Setting Component-->
  704. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="25,0,0,382">
  705. <DockPanel Background="{StaticResource Table_BG_Content}">
  706. <Label Content="Cooling2" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  707. <Grid>
  708. <Grid.RowDefinitions>
  709. <RowDefinition Height="*" />
  710. <RowDefinition Height="*" />
  711. </Grid.RowDefinitions>
  712. <Grid.ColumnDefinitions>
  713. <ColumnDefinition Width="100" />
  714. <ColumnDefinition Width="*" />
  715. </Grid.ColumnDefinitions>
  716. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="CoolingBuffer2" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  717. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="CoolingBuffer2" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  718. <Border Grid.Row="2" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  719. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  720. <Grid.ColumnDefinitions>
  721. <ColumnDefinition Width="*" />
  722. <ColumnDefinition Width="*" />
  723. </Grid.ColumnDefinitions>
  724. <Grid.RowDefinitions>
  725. <RowDefinition Height="Auto" />
  726. </Grid.RowDefinitions>
  727. <Label Content="Type"/>
  728. <Label Content="{Binding Cooling2WaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  729. </Grid>
  730. </Border>
  731. </Grid>
  732. </DockPanel>
  733. </Border>
  734. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="25,0,0,382">
  735. <DockPanel Background="{StaticResource Table_BG_Content}">
  736. <Label Content="Cooling2" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  737. <Grid>
  738. <Grid.RowDefinitions>
  739. <RowDefinition Height="*" />
  740. <RowDefinition Height="*" />
  741. </Grid.RowDefinitions>
  742. <Grid.ColumnDefinitions>
  743. <ColumnDefinition Width="70" />
  744. <ColumnDefinition Width="70" />
  745. <ColumnDefinition Width="*" />
  746. </Grid.ColumnDefinitions>
  747. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferSize4}" CommandParameter="CoolingBuffer2" Margin="8,0,0,0" Width="40" Height="25" Content="4'" VerticalAlignment="Center" />
  748. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferSize6}" CommandParameter="CoolingBuffer2" Margin="0,0,0,0" Width="40" Height="25" Content="6'" VerticalAlignment="Center" />
  749. <Button Grid.Column="2" Grid.Row="0" Command="{Binding SetWaferSize8}" CommandParameter="CoolingBuffer2" Margin="0,0,0,0" Width="40" Height="25" Content="8'" VerticalAlignment="Center" />
  750. <Border Grid.Row="2" Grid.ColumnSpan="3" BorderBrush="Gray" BorderThickness="1">
  751. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  752. <Grid.ColumnDefinitions>
  753. <ColumnDefinition Width="*" />
  754. <ColumnDefinition Width="*" />
  755. </Grid.ColumnDefinitions>
  756. <Grid.RowDefinitions>
  757. <RowDefinition Height="Auto" />
  758. </Grid.RowDefinitions>
  759. <Label Content="Size"/>
  760. <Label Content="{Binding WaferSizeCoolingBuffer2}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  761. </Grid>
  762. </Border>
  763. </Grid>
  764. </DockPanel>
  765. </Border>
  766. <!--Upper Blader Wafer Setting Component-->
  767. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="715,0,0,177">
  768. <DockPanel Background="{StaticResource Table_BG_Content}">
  769. <Label Content="Upper" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  770. <Grid>
  771. <Grid.RowDefinitions>
  772. <RowDefinition Height="*" />
  773. <RowDefinition Height="*" />
  774. </Grid.RowDefinitions>
  775. <Grid.ColumnDefinitions>
  776. <ColumnDefinition Width="100" />
  777. <ColumnDefinition Width="*" />
  778. </Grid.ColumnDefinitions>
  779. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="Upper" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  780. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="Upper" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  781. <Border Grid.Row="2" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  782. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  783. <Grid.ColumnDefinitions>
  784. <ColumnDefinition Width="*" />
  785. <ColumnDefinition Width="*" />
  786. </Grid.ColumnDefinitions>
  787. <Grid.RowDefinitions>
  788. <RowDefinition Height="Auto" />
  789. </Grid.RowDefinitions>
  790. <Label Content="Type"/>
  791. <Label Content="{Binding UpperWaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  792. </Grid>
  793. </Border>
  794. </Grid>
  795. </DockPanel>
  796. </Border>
  797. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="715,0,0,177">
  798. <DockPanel Background="{StaticResource Table_BG_Content}">
  799. <Label Content="Upper" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  800. <Grid>
  801. <Grid.RowDefinitions>
  802. <RowDefinition Height="*" />
  803. <RowDefinition Height="*" />
  804. </Grid.RowDefinitions>
  805. <Grid.ColumnDefinitions>
  806. <ColumnDefinition Width="70" />
  807. <ColumnDefinition Width="70" />
  808. <ColumnDefinition Width="*" />
  809. </Grid.ColumnDefinitions>
  810. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferSize4}" CommandParameter="Upper" Margin="8,0,0,0" Width="40" Height="25" Content="4'" VerticalAlignment="Center" />
  811. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferSize6}" CommandParameter="Upper" Margin="0,0,0,0" Width="40" Height="25" Content="6'" VerticalAlignment="Center" />
  812. <Button Grid.Column="2" Grid.Row="0" Command="{Binding SetWaferSize8}" CommandParameter="Upper" Margin="0,0,0,0" Width="40" Height="25" Content="8'" VerticalAlignment="Center" />
  813. <Border Grid.Row="2" Grid.ColumnSpan="3" BorderBrush="Gray" BorderThickness="1">
  814. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  815. <Grid.ColumnDefinitions>
  816. <ColumnDefinition Width="*" />
  817. <ColumnDefinition Width="*" />
  818. </Grid.ColumnDefinitions>
  819. <Grid.RowDefinitions>
  820. <RowDefinition Height="Auto" />
  821. </Grid.RowDefinitions>
  822. <Label Content="Size"/>
  823. <Label Content="{Binding WaferSizeRobot2}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  824. </Grid>
  825. </Border>
  826. </Grid>
  827. </DockPanel>
  828. </Border>
  829. <!--Lower Blader Wafer Setting Component-->
  830. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="25,0,0,177">
  831. <DockPanel Background="{StaticResource Table_BG_Content}">
  832. <Label Content="Lower" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  833. <Grid>
  834. <Grid.RowDefinitions>
  835. <RowDefinition Height="*" />
  836. <RowDefinition Height="*" />
  837. </Grid.RowDefinitions>
  838. <Grid.ColumnDefinitions>
  839. <ColumnDefinition Width="100" />
  840. <ColumnDefinition Width="*" />
  841. </Grid.ColumnDefinitions>
  842. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferThick}" CommandParameter="Lower" Margin="8,0,0,0" Width="80" Height="25" Content="Thick" VerticalAlignment="Center" />
  843. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferThin}" CommandParameter="Lower" Margin="0,0,0,0" Width="80" Height="25" Content="Thin" VerticalAlignment="Center" />
  844. <Border Grid.Row="2" Grid.ColumnSpan="2" BorderBrush="Gray" BorderThickness="1">
  845. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  846. <Grid.ColumnDefinitions>
  847. <ColumnDefinition Width="*" />
  848. <ColumnDefinition Width="*" />
  849. </Grid.ColumnDefinitions>
  850. <Grid.RowDefinitions>
  851. <RowDefinition Height="Auto" />
  852. </Grid.RowDefinitions>
  853. <Label Content="Type"/>
  854. <Label Content="{Binding LowerWaferThickness}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  855. </Grid>
  856. </Border>
  857. </Grid>
  858. </DockPanel>
  859. </Border>
  860. <Border HorizontalAlignment="Left" VerticalAlignment="Bottom" BorderThickness="1" Visibility="Hidden" BorderBrush="#84a567" Height="93" Width="195" Margin="25,0,0,177">
  861. <!--Visibility="{Binding EnableMultiWaferSize}"-->
  862. <DockPanel Background="{StaticResource Table_BG_Content}">
  863. <Label Content="Lower" HorizontalContentAlignment="Center" DockPanel.Dock="Top" Style="{StaticResource label}" Width="230" Height="30" />
  864. <Grid>
  865. <Grid.RowDefinitions>
  866. <RowDefinition Height="*" />
  867. <RowDefinition Height="*" />
  868. </Grid.RowDefinitions>
  869. <Grid.ColumnDefinitions>
  870. <ColumnDefinition Width="70" />
  871. <ColumnDefinition Width="70" />
  872. <ColumnDefinition Width="*" />
  873. </Grid.ColumnDefinitions>
  874. <Button Grid.Column="0" Grid.Row="0" Command="{Binding SetWaferSize4}" CommandParameter="Lower" Margin="8,0,0,0" Width="40" Height="25" Content="4'" VerticalAlignment="Center" />
  875. <Button Grid.Column="1" Grid.Row="0" Command="{Binding SetWaferSize6}" CommandParameter="Lower" Margin="0,0,0,0" Width="40" Height="25" Content="6'" VerticalAlignment="Center" />
  876. <Button Grid.Column="2" Grid.Row="0" Command="{Binding SetWaferSize8}" CommandParameter="Lower" Margin="0,0,0,0" Width="40" Height="25" Content="8'" VerticalAlignment="Center" />
  877. <Border Grid.Row="2" Grid.ColumnSpan="3" BorderBrush="Gray" BorderThickness="1">
  878. <Grid ctrlCommon:GridHelper.Column0="LightBlue" ctrlCommon:GridHelper.Column1="Transparent">
  879. <Grid.ColumnDefinitions>
  880. <ColumnDefinition Width="*" />
  881. <ColumnDefinition Width="*" />
  882. </Grid.ColumnDefinitions>
  883. <Grid.RowDefinitions>
  884. <RowDefinition Height="Auto" />
  885. </Grid.RowDefinitions>
  886. <Label Content="Size"/>
  887. <Label Content="{Binding WaferSizeRobot1}" Grid.Column="1" Style="{StaticResource MiddleCenterLabel}" />
  888. </Grid>
  889. </Border>
  890. </Grid>
  891. </DockPanel>
  892. </Border>
  893. <Border Grid.Column="0" Visibility="{Binding IsEnableMultiWaferSize,Converter={StaticResource boolVisibilityConverter}}">
  894. <Canvas>
  895. <TextBlock Visibility="{Binding LP1Enable, Converter={StaticResource boolVisibilityConverter}}" Background="AliceBlue" TextWrapping="Wrap" FontSize="10" Text="{Binding LP1CarrierType}" Width="170" Canvas.Left="402" Canvas.Top="665" Height="70" RenderTransformOrigin="0.333,0.5" VerticalAlignment="Top"/>
  896. <!--<TextBlock Background="AliceBlue" TextWrapping="Wrap" FontSize="10" Text="{Binding LP2CarrierType}" Width="170" Canvas.Left="490" Canvas.Top="630" Height="70" RenderTransformOrigin="0.678,2.2"/>-->
  897. <Button Template="{StaticResource realism_button}" Canvas.Left="445" Canvas.Top="740" FontSize="12" Visibility="{Binding IsShowLP1CarrierType,Converter={StaticResource boolVisibilityConverter}}" Content="CarrierType" Command="{Binding SetTransCarrierTypeCommand}" CommandParameter="LP1" Margin="0" Width="84" RenderTransformOrigin="2.247,3.75"></Button>
  898. <!--<Button Canvas.Left="530" Canvas.Top="705" FontSize="12" Visibility="{Binding IsShowLP2CarrierType,Converter={StaticResource boolVisibilityConverter}}" Content="CarrierType" Command="{Binding SetTransCarrierTypeCommand}" CommandParameter="LP2" Margin="0" RenderTransformOrigin="-3.04,-2.375" Width="85"></Button>-->
  899. <!--TextBlock Background="AliceBlue" TextWrapping="Wrap" FontSize="10" Text="{Binding LP3CarrierType}" Width="80" Canvas.Left="194" Canvas.Top="450" Height="85" RenderTransformOrigin="0.333,0.5"/>
  900. <TextBlock Background="AliceBlue" TextWrapping="Wrap" FontSize="10" Text="{Binding LP4CarrierType}" Width="80" Canvas.Left="279" Canvas.Top="450" Height="85" RenderTransformOrigin="0.678,2.2"/>-->
  901. </Canvas>
  902. </Border>
  903. </Grid>
  904. </Grid>
  905. </UserControl>