LoaderSetupView.xaml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <UserControl
  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:prism="http://prismlibrary.com/"
  8. xmlns:UserControls="clr-namespace:CyberX8_Themes.UserControls;assembly=CyberX8_Themes"
  9. x:Class="CyberX8_MainPages.Views.LoaderSetupView"
  10. xmlns:converters="clr-namespace:CyberX8_Themes.Converters;assembly=CyberX8_Themes"
  11. mc:Ignorable="d" Name="loaderSetupView"
  12. prism:ViewModelLocator.AutoWireViewModel="True"
  13. d:DesignHeight="800" d:DesignWidth="1900">
  14. <UserControl.Resources>
  15. <converters:BoolToColor x:Key="boolToColor"/>
  16. </UserControl.Resources>
  17. <Grid>
  18. <Grid.RowDefinitions>
  19. <RowDefinition Height="10"/>
  20. <RowDefinition Height="170"/>
  21. <RowDefinition Height="170"/>
  22. <RowDefinition Height="170"/>
  23. <RowDefinition Height="265"/>
  24. <RowDefinition/>
  25. </Grid.RowDefinitions>
  26. <Grid.ColumnDefinitions>
  27. <ColumnDefinition Width="550"></ColumnDefinition>
  28. <ColumnDefinition Width="400"></ColumnDefinition>
  29. <ColumnDefinition Width="550"></ColumnDefinition>
  30. <ColumnDefinition Width="400"></ColumnDefinition>
  31. <ColumnDefinition/>
  32. </Grid.ColumnDefinitions>
  33. <Grid Grid.Row="1" Grid.Column="0">
  34. <Grid.ColumnDefinitions>
  35. <ColumnDefinition Width="420"></ColumnDefinition>
  36. <ColumnDefinition/>
  37. </Grid.ColumnDefinitions>
  38. <UserControls:LoaderStationPositionControl HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center" ModuleTitle="{Binding ShuttleAModuleName}"
  39. ModuleName="{Binding ShuttleAModuleName}" CurrentPosition="{Binding ShuttleAMotionData.MotorPosition}"
  40. Torque="{Binding ShuttleAMotionData.Torque}" CurrentStation="{Binding ShuttleACurrentStation}"/>
  41. </Grid>
  42. <Grid Grid.Row="2" Grid.Column="0">
  43. <Grid.ColumnDefinitions>
  44. <ColumnDefinition Width="420"></ColumnDefinition>
  45. <ColumnDefinition/>
  46. </Grid.ColumnDefinitions>
  47. <UserControls:LoaderStationPositionControl HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center" ModuleTitle="{Binding TiltAModuleName}"
  48. ModuleName="{Binding TiltAModuleName}" CurrentPosition="{Binding TiltAMotionData.MotorPosition}"
  49. Torque="{Binding TiltAMotionData.Torque}" CurrentStation="{Binding TiltACurrentStation}"/>
  50. <GroupBox Header="SideA" Grid.Column="1" Margin="0,0,0,0">
  51. <Grid>
  52. <Grid.RowDefinitions>
  53. <RowDefinition/>
  54. <RowDefinition/>
  55. </Grid.RowDefinitions>
  56. <Label Grid.Row="0" Content="Current Operation" HorizontalAlignment="Center" Margin="0,10,0,22"></Label>
  57. <TextBlock Grid.Row="0" Text="{Binding CurrentSideAOperation}" Background="Black" VerticalAlignment="Top" TextAlignment="Center" Foreground="Lime" FontSize="16" FontWeight="Bold" Margin="10,37,10,0"/>
  58. <Label Grid.Row="1" Content="Wafer Size" HorizontalAlignment="Center" Margin="0,10,0,22"></Label>
  59. <TextBlock Grid.Row="1" Text="{Binding WaferSizeA}" Background="Black" VerticalAlignment="Center" TextAlignment="Center" Foreground="Lime" FontSize="16" FontWeight="Bold" Margin="10,28,43,8"/>
  60. <TextBlock Grid.Row="1" Text="mm" Background="Black" Foreground="Lime" VerticalAlignment="Center" FontSize="16" FontWeight="Bold" Margin="81,28,2,8"/>
  61. </Grid>
  62. </GroupBox>
  63. </Grid>
  64. <Grid Grid.Row="3" Grid.Column="0">
  65. <Grid.ColumnDefinitions>
  66. <ColumnDefinition Width="420"></ColumnDefinition>
  67. <ColumnDefinition/>
  68. </Grid.ColumnDefinitions>
  69. <UserControls:LoaderStationPositionControl HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center" ModuleTitle="{Binding CRSAModuleName}" ModuleName="{Binding CRSAModuleName}"
  70. CurrentPosition="{Binding CRSAMotionData.MotorPosition}" Torque="{Binding CRSAMotionData.Torque}" CurrentStation="{Binding CRSACurrentStation}"/>
  71. <Canvas Grid.Column="1" HorizontalAlignment="Center" Width="130">
  72. <Rectangle Margin="0,10,0,0" Stroke="WhiteSmoke" Width="130" Height="160" RadiusX="5" RadiusY="5"></Rectangle>
  73. <Button Style="{StaticResource SysBtnStyle}" Content="Load A" Width="120" Margin="5,30" Height="30" Command="{Binding SideALoadCommand}"></Button>
  74. <Button Style="{StaticResource SysBtnStyle}" Content="Unload A" Width="120" Margin="5,75" Height="30" Command="{Binding SideAUnloadCommand}"></Button>
  75. <Button Style="{StaticResource SysBtnStyle}" Content="Install LS A" Width="120" Margin="5,120" Height="30" Command="{Binding SideAInstallCRSCommand}" CommandParameter="SideA"></Button>
  76. </Canvas>
  77. </Grid>
  78. <Polygon Grid.Column="1" Grid.RowSpan="2" Grid.Row="1" Points="60,30 60,310 340,310 340,30" Stroke="Gray" StrokeThickness="8" >
  79. <Polygon.Fill>
  80. <LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
  81. <GradientStop Color="Silver" Offset="0.0" />
  82. <GradientStop Color="White" Offset="0.5" />
  83. <GradientStop Color="Silver" Offset="1" />
  84. </LinearGradientBrush>
  85. </Polygon.Fill>
  86. </Polygon>
  87. <Canvas Height="160" Width="103" Canvas.Left="570" Canvas.Top="60" Grid.Column="1" Grid.RowSpan="2" Grid.Row="1">
  88. <Canvas.RenderTransform>
  89. <TransformGroup>
  90. <RotateTransform Angle="{Binding Loader1RotationPosition}" CenterX="51.5" CenterY="80"/>
  91. </TransformGroup>
  92. </Canvas.RenderTransform>
  93. <UserControls:LoaderControl HorizontalAlignment="Left" VerticalAlignment="Top" Height="160" Width="103" WaferVisibleA="{Binding LoaderWaferVisibleA}" WaferVisibleB="{Binding LoaderWaferVisibleB}"
  94. LoaderWaferA="{Binding LoaderWaferA}" LoaderWaferB="{Binding LoaderWaferB}"/>
  95. </Canvas>
  96. <UserControls:LoaderStationPositionControl HorizontalAlignment="Left" Margin="0,0,0,0" VerticalAlignment="Center" Grid.Row="3" Grid.Column="1" ModuleTitle="{Binding RotationModuleName}" ModuleName="{Binding RotationModuleName}"
  97. CurrentPosition="{Binding RotationMotionData.MotorPosition}" Torque="{Binding RotationMotionData.Torque}" CurrentStation="{Binding RotationCurrentStation}"/>
  98. <UserControls:LoaderStationSideControl Grid.Row="4" Grid.Column="0" ModuleTitle="{Binding SideAModuleName}" ModuleName="{Binding SideAModuleName}" WaferPresent="{Binding SideAData.WaferPresent}"
  99. DoorUnlocked="{Binding SideAData.DoorUnlock}" CRSVacuum="{Binding SideAData.CRSVacuum}" WhBladdered="{Binding SideAData.WHBladder}"
  100. TransBladdered="{Binding SideAData.TransBladder}" TransHighPresed="{Binding SideAData.TransHigh}" BernoulliBladdered="{Binding SideAData.BernoulliBladder}"
  101. BernoulliN2="{Binding SideAData.BernoulliN2}" DoorUpperUnlocked="{Binding SideAData.DoorUpperUnlocked}" DoorUpperLocked="{Binding SideAData.DoorUpperLocked}"
  102. DoorLowerUnlocked="{Binding SideAData.DoorLowerUnlocked}" DoorLowerLocked="{Binding SideAData.DoorLowerLocked}" CRSVacuumValue="{Binding SideAData.CRSVacuumValue}"
  103. WhPressureValue="{Binding SideAData.WHBladderPressure}" TransRetracted="{Binding SideAData.TransRetracted}" TranslationPresValue="{Binding SideAData.TransPressure}"
  104. BernoulliExtend="{Binding SideAData.BernoulliExtended}" BernoulliPressure="{Binding SideAData.BernoulliPressure}" BernoulliBladderPressure="{Binding SideAData.BernoulliBladderPressure}"/>
  105. <UserControls:LoaderStationSideControl Grid.Row="4" Grid.Column="2" ModuleTitle="{Binding SideBModuleName}" ModuleName="{Binding SideBModuleName}" WaferPresent="{Binding SideBData.WaferPresent}"
  106. DoorUnlocked="{Binding SideBData.DoorUnlock}" CRSVacuum="{Binding SideBData.CRSVacuum}" WhBladdered="{Binding SideBData.WHBladder}"
  107. TransBladdered="{Binding SideBData.TransBladder}" TransHighPresed="{Binding SideBData.TransHigh}" BernoulliBladdered="{Binding SideBData.BernoulliBladder}"
  108. BernoulliN2="{Binding SideBData.BernoulliN2}" DoorUpperUnlocked="{Binding SideBData.DoorUpperUnlocked}" DoorUpperLocked="{Binding SideBData.DoorUpperLocked}"
  109. DoorLowerUnlocked="{Binding SideBData.DoorLowerUnlocked}" DoorLowerLocked="{Binding SideBData.DoorLowerLocked}" CRSVacuumValue="{Binding SideBData.CRSVacuumValue}"
  110. WhPressureValue="{Binding SideBData.WHBladderPressure}" TransRetracted="{Binding SideBData.TransRetracted}" TranslationPresValue="{Binding SideBData.TransPressure}"
  111. BernoulliExtend="{Binding SideBData.BernoulliExtended}" BernoulliPressure="{Binding SideBData.BernoulliPressure}" BernoulliBladderPressure="{Binding SideBData.BernoulliBladderPressure}"/>
  112. <Grid Grid.Row="1" Grid.Column="2">
  113. <Grid.ColumnDefinitions>
  114. <ColumnDefinition/>
  115. <ColumnDefinition Width="420"></ColumnDefinition>
  116. </Grid.ColumnDefinitions>
  117. <Label FontSize="14" Content="Loader Busy" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Center" HorizontalAlignment="Left"/>
  118. <Ellipse Width="16" Height="16" Fill="{Binding IsBusy, Converter={StaticResource boolToColor}}" Stroke="Silver" Margin="95,77,19,77"/>
  119. <Label FontSize="14" Content="LSH" VerticalContentAlignment="Center" HorizontalContentAlignment="Left" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="0,104,0,0"/>
  120. <Ellipse Width="16" Height="16" Fill="{Binding IsCRSH, Converter={StaticResource boolToColor}}" Stroke="Silver" Margin="95,109,19,45"/>
  121. <UserControls:LoaderStationPositionControl HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center" Grid.Column="1" ModuleTitle="{Binding ShuttleBModuleName}" ModuleName="{Binding ShuttleBModuleName}"
  122. CurrentPosition="{Binding ShuttleBMotionData.MotorPosition}" Torque="{Binding ShuttleBMotionData.Torque}" CurrentStation="{Binding ShuttleBCurrentStation}"/>
  123. </Grid>
  124. <Grid Grid.Row="2" Grid.Column="2">
  125. <Grid.ColumnDefinitions>
  126. <ColumnDefinition/>
  127. <ColumnDefinition Width="420"></ColumnDefinition>
  128. </Grid.ColumnDefinitions>
  129. <UserControls:LoaderStationPositionControl HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center" Grid.Column="1" ModuleTitle="{Binding TiltBModuleName}" ModuleName="{Binding TiltBModuleName}"
  130. CurrentPosition="{Binding TiltBMotionData.MotorPosition}" Torque="{Binding TiltBMotionData.Torque}" CurrentStation="{Binding TiltBCurrentStation}"/>
  131. <GroupBox Header="SideB" Grid.Column="0" Margin="0,0,0,0">
  132. <Grid>
  133. <Grid.RowDefinitions>
  134. <RowDefinition/>
  135. <RowDefinition/>
  136. </Grid.RowDefinitions>
  137. <Label Grid.Row="0" Content="Current Operation" HorizontalAlignment="Center" Margin="0,10,0,22"></Label>
  138. <TextBlock Grid.Row="0" Text="{Binding CurrentSideBOperation}" Background="Black" VerticalAlignment="Top" Foreground="Lime" TextAlignment="Center" FontSize="16" FontWeight="Bold" Margin="10,37,10,0"/>
  139. <Label Grid.Row="1" Content="Wafer Size" HorizontalAlignment="Center" Margin="0,10,0,22"></Label>
  140. <TextBlock Grid.Row="1" Text="{Binding WaferSizeB}" Background="Black" VerticalAlignment="Center" TextAlignment="Center" Foreground="Lime" FontSize="16" FontWeight="Bold" Margin="10,28,43,8"/>
  141. <TextBlock Grid.Row="1" Text="mm" Background="Black" Foreground="Lime" VerticalAlignment="Center" FontSize="16" FontWeight="Bold" Margin="81,28,2,8"/>
  142. </Grid>
  143. </GroupBox>
  144. </Grid>
  145. <Grid Grid.Row="3" Grid.Column="2">
  146. <Grid.ColumnDefinitions>
  147. <ColumnDefinition/>
  148. <ColumnDefinition Width="420"></ColumnDefinition>
  149. </Grid.ColumnDefinitions>
  150. <UserControls:LoaderStationPositionControl HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Center" Grid.Column="1" ModuleTitle="{Binding CRSBModuleName}" ModuleName="{Binding CRSBModuleName}"
  151. CurrentPosition="{Binding CRSBMotionData.MotorPosition}" Torque="{Binding CRSBMotionData.Torque}" CurrentStation="{Binding CRSBCurrentStation}"/>
  152. <Canvas Grid.Column="0" HorizontalAlignment="Center" Width="130">
  153. <Rectangle Margin="0,10,0,0" Stroke="WhiteSmoke" Width="130" Height="160" RadiusX="5" RadiusY="5"></Rectangle>
  154. <Button Style="{StaticResource SysBtnStyle}" Content="Load B" Width="120" Margin="5,30" Height="30" Command="{Binding SideBLoadCommand}"></Button>
  155. <Button Style="{StaticResource SysBtnStyle}" Content="Unload B" Width="120" Margin="5,75" Height="30" Command="{Binding SideBUnloadCommand}"></Button>
  156. <Button Style="{StaticResource SysBtnStyle}" Content="Install LS B" Width="120" Margin="5,120" Height="30" Command="{Binding SideBInstallCRSCommand}"></Button>
  157. </Canvas>
  158. </Grid>
  159. <UserControls:LoaderCommonControl Grid.Row="4" Grid.Column="1" WaferHolderSideAClamp="{Binding CommonData.SideAWaferHolderClamp}" WaferHolderSideBClamp="{Binding CommonData.SideAWaferHolderClamp}"
  160. WaferHolderPresent="{Binding CommonData.WaferHolderPresent}" WaferHolderClamp="{Binding CommonData.WaferHolderClamp}"
  161. DripTrayFluidClamp="{Binding CommonData.DripTrayFluid}" ModuleName="{Binding CommonModuleName}"/>
  162. <UserControls:LoaderWaferHolderFlowControl Grid.Row="1" Grid.Column="3" Grid.RowSpan="2" LabelSeries="{Binding LabelSeries}" ValueSeries="{Binding ValueSeries}"
  163. LeakFlowClamp="{Binding CommonData.LeakFlowClamp}" ModuleName="{Binding CommonModuleName}" LeakFlow="{Binding CommonData.LeakFlow}"
  164. LeakVacuum="{Binding CommonData.LeakVacuum}" LeakVacuumValue="{Binding CommonData.LeakVacuumValue}" LeakMajor="{Binding CommonData.LeakMajor}"
  165. LeakMinor="{Binding CommonData.LeakMinor}" LeakStatus="{Binding CommonData.LeakStatus}" IsFlowStartEnabled="{Binding CommonData.IsFlowStartEnabled}"
  166. IsFlowStopEnabled="{Binding CommonData.IsFlowStopEnabled}"/>
  167. <UserControls:LoaderDetectionControl Grid.Row="4" Grid.Column="3" Visibility="{Binding PlateOutCameraVisibility}"></UserControls:LoaderDetectionControl>
  168. </Grid>
  169. </UserControl>