ChamberDE.xaml 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  1. <UserControl x:Class="Venus_Themes.UserControls.ChamberDE"
  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:Venus_Themes.UserControls"
  7. mc:Ignorable="d"
  8. d:DesignHeight="30" d:DesignWidth="320" x:Name="chamber">
  9. <UserControl.Resources>
  10. <Storyboard x:Key="SlitValve_Open">
  11. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Height)" >
  12. <EasingDoubleKeyFrame KeyTime="0" Value="75"/>
  13. <EasingDoubleKeyFrame KeyTime="0:0:1" Value="42"/>
  14. </DoubleAnimationUsingKeyFrames>
  15. </Storyboard>
  16. <Storyboard x:Key="SlitValve_Close">
  17. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Height)" >
  18. <EasingDoubleKeyFrame KeyTime="0" Value="42"/>
  19. <EasingDoubleKeyFrame KeyTime="0:0:1" Value="75"/>
  20. </DoubleAnimationUsingKeyFrames>
  21. </Storyboard>
  22. <Storyboard x:Key="LinerValve_Open">
  23. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Height)" >
  24. <EasingDoubleKeyFrame KeyTime="0" Value="75"/>
  25. <EasingDoubleKeyFrame KeyTime="0:0:1" Value="12"/>
  26. </DoubleAnimationUsingKeyFrames>
  27. </Storyboard>
  28. <Storyboard x:Key="LinerValve_Close">
  29. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Height)" >
  30. <EasingDoubleKeyFrame KeyTime="0" Value="12"/>
  31. <EasingDoubleKeyFrame KeyTime="0:0:1" Value="75"/>
  32. </DoubleAnimationUsingKeyFrames>
  33. </Storyboard>
  34. <Style TargetType="{x:Type Rectangle}" x:Key="SlitValve_Animation2">
  35. <Style.Triggers>
  36. <DataTrigger Binding="{Binding ElementName=chamber,Path=IsOpenLinerDoor}" Value="true" >
  37. <DataTrigger.EnterActions>
  38. <BeginStoryboard Storyboard="{StaticResource LinerValve_Open}"/>
  39. </DataTrigger.EnterActions>
  40. <DataTrigger.ExitActions>
  41. <BeginStoryboard Storyboard="{StaticResource LinerValve_Close}"/>
  42. </DataTrigger.ExitActions>
  43. </DataTrigger>
  44. </Style.Triggers>
  45. </Style>
  46. <Style TargetType="{x:Type Rectangle}" x:Key="SlitValve_Animation" >
  47. <Style.Triggers>
  48. <DataTrigger Binding="{Binding ElementName=chamber,Path=IsOpenSlitDoor}" Value="true">
  49. <DataTrigger.EnterActions>
  50. <BeginStoryboard Storyboard="{StaticResource SlitValve_Open}"/>
  51. </DataTrigger.EnterActions>
  52. <DataTrigger.ExitActions>
  53. <BeginStoryboard Storyboard="{StaticResource SlitValve_Close}"/>
  54. </DataTrigger.ExitActions>
  55. </DataTrigger>
  56. </Style.Triggers>
  57. </Style>
  58. <LinearGradientBrush StartPoint="0,0.501" EndPoint="1,0.501" x:Key="rfcolor">
  59. <LinearGradientBrush.GradientStops>
  60. <GradientStop Color="#FFFFDD76" Offset="0" />
  61. <GradientStop Color="sc#1, 0.8019137, 0.520800948, 0.106530145" Offset="0.25" />
  62. <GradientStop Color="#FFCC9932" Offset="1" />
  63. </LinearGradientBrush.GradientStops>
  64. </LinearGradientBrush>
  65. </UserControl.Resources>
  66. <Canvas >
  67. <Grid Width="240" Height="190" Canvas.Top="80">
  68. <Grid.ColumnDefinitions>
  69. <ColumnDefinition Width="21*"/>
  70. <ColumnDefinition Width="2*"/>
  71. <ColumnDefinition Width="217*"/>
  72. </Grid.ColumnDefinitions>
  73. <Grid.RowDefinitions>
  74. <RowDefinition Height="160"/>
  75. <RowDefinition />
  76. </Grid.RowDefinitions>
  77. <Path Data="M0.5,0.5 L33.5,0.5 33.5,17.5 206.5,17.5 206.5,0.5 239.5,0.5 239.5,149.5 0.5,149.5 z" Stroke="#FF747474" Margin="0,10,8,8" Stretch="Fill" Grid.ColumnSpan="3">
  78. <Path.Fill>
  79. <LinearGradientBrush EndPoint="1,1" StartPoint="0,0">
  80. <GradientStop Color="#FF8F8F8F" Offset="0"/>
  81. <GradientStop Color="#FF9B9B9B" Offset="1"/>
  82. <GradientStop Color="#FEF1ECEC" Offset="0.15"/>
  83. <GradientStop Color="#FEC0C0C0" Offset="0.38"/>
  84. <GradientStop Color="#FEB4B4B4" Offset="0.5"/>
  85. <GradientStop Color="#FEE5E5E5" Offset="0.7"/>
  86. <GradientStop Color="#FFBABABA" Offset="0.85"/>
  87. <GradientStop Color="#FFE5E5E5" Offset="0.9"/>
  88. </LinearGradientBrush>
  89. </Path.Fill>
  90. </Path>
  91. <Rectangle Stroke="#FF747474" Margin="8,18,8,18" Grid.ColumnSpan="3">
  92. <Rectangle.Fill>
  93. <LinearGradientBrush EndPoint="0.243,1" StartPoint="0.757,0">
  94. <GradientStop Color="#FFE0DEDE" Offset="0"/>
  95. <GradientStop Color="#FFE2E2E2" Offset="1"/>
  96. <GradientStop Color="#FEFFFFFF" Offset="0.55"/>
  97. <GradientStop Color="#FFEFEFEF" Offset="0.75"/>
  98. </LinearGradientBrush>
  99. </Rectangle.Fill>
  100. </Rectangle>
  101. <Rectangle x:Name="BG_Status" Margin="9,19,9,19" Visibility="{Binding BiasRfPowerOnChamberVisibility}" Cursor="Hand" Grid.ColumnSpan="3">
  102. <Rectangle.ContextMenu >
  103. <ContextMenu>
  104. <MenuItem Header="Create Wafer" Click="CreateWafer_Click" IsChecked="{Binding IsHasWafer}" IsEnabled="{Binding IsHasWafer,Converter={StaticResource BoolToBool}}"/>
  105. <MenuItem Header="Delete Wafer" Click="DeleteWafer_Click" IsChecked="{Binding IsHasWafer,Converter={StaticResource BoolToBool}}" IsEnabled="{Binding IsHasWafer}"/>
  106. </ContextMenu>
  107. </Rectangle.ContextMenu>
  108. <Rectangle.Style>
  109. <Style>
  110. <Setter Property="Rectangle.Fill" Value="WhiteSmoke"/>
  111. <Style.Triggers>
  112. <DataTrigger Binding="{Binding ElementName=chamber,Path=IsBRFOn}" Value="True">
  113. <Setter Property="Rectangle.Fill" Value="#FFFF9292"/>
  114. </DataTrigger>
  115. </Style.Triggers>
  116. </Style>
  117. </Rectangle.Style>
  118. </Rectangle>
  119. <Rectangle Stroke="#FF747474" Height="11" VerticalAlignment="Bottom" Margin="0,0,12,8" Grid.ColumnSpan="3">
  120. <Rectangle.Fill>
  121. <LinearGradientBrush EndPoint="0.243,1" StartPoint="0.757,0">
  122. <GradientStop Color="#FFE0DEDE" Offset="0"/>
  123. <GradientStop Color="#FFE2E2E2" Offset="1"/>
  124. <GradientStop Color="#FEFFFFFF" Offset="0.55"/>
  125. <GradientStop Color="#FFEFEFEF" Offset="0.75"/>
  126. </LinearGradientBrush>
  127. </Rectangle.Fill>
  128. </Rectangle>
  129. <Grid x:Name="Cover" Width="180" Height="18" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="7,2,0,0" RenderTransformOrigin="1,0.4444" Grid.Column="2">
  130. <Grid.RenderTransform>
  131. <TransformGroup>
  132. <ScaleTransform/>
  133. <SkewTransform/>
  134. <RotateTransform/>
  135. <TranslateTransform/>
  136. </TransformGroup>
  137. </Grid.RenderTransform>
  138. <Grid.Resources>
  139. <Storyboard x:Key="CoverOpen">
  140. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)">
  141. <EasingDoubleKeyFrame KeyTime="0" Value="0"/>
  142. <EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="20"/>
  143. </DoubleAnimationUsingKeyFrames>
  144. </Storyboard>
  145. <Storyboard x:Key="CoverClose">
  146. <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)">
  147. <EasingDoubleKeyFrame KeyTime="0" Value="20"/>
  148. <EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="0"/>
  149. </DoubleAnimationUsingKeyFrames>
  150. </Storyboard>
  151. </Grid.Resources>
  152. <Grid.Style>
  153. <Style>
  154. <Style.Triggers>
  155. <DataTrigger Binding="{Binding ElementName=chamber,Path=IsLidOpen}" Value="true">
  156. <DataTrigger.EnterActions>
  157. <BeginStoryboard Storyboard="{StaticResource CoverOpen}"/>
  158. </DataTrigger.EnterActions>
  159. <DataTrigger.ExitActions>
  160. <BeginStoryboard Storyboard="{StaticResource CoverClose}"/>
  161. </DataTrigger.ExitActions>
  162. </DataTrigger>
  163. </Style.Triggers>
  164. </Style>
  165. </Grid.Style>
  166. </Grid>
  167. <Grid Grid.RowSpan="2" Height="167" VerticalAlignment="Bottom" Margin="17,0,40,2" Grid.Column="2">
  168. <Grid.ColumnDefinitions>
  169. <ColumnDefinition Width="73*"/>
  170. <ColumnDefinition Width="88*"/>
  171. </Grid.ColumnDefinitions>
  172. <Rectangle Height="12" Stroke="Gray" VerticalAlignment="Top" Width="150" Margin="5,98,5,0" Grid.ColumnSpan="2">
  173. <Rectangle.Fill>
  174. <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
  175. <GradientStop Color="#FFABABAB" Offset="0"/>
  176. <GradientStop Color="#FFDADADA" Offset="1"/>
  177. </LinearGradientBrush>
  178. </Rectangle.Fill>
  179. </Rectangle>
  180. <Rectangle Height="12" Margin="0,109,0,0" Stroke="Gray" VerticalAlignment="Top" Width="160" Grid.ColumnSpan="2">
  181. <Rectangle.Fill>
  182. <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
  183. <GradientStop Color="#FFABABAB" Offset="0"/>
  184. <GradientStop Color="#FFDADADA" Offset="1"/>
  185. </LinearGradientBrush>
  186. </Rectangle.Fill>
  187. </Rectangle>
  188. <!--4寸 guide pin-->
  189. <Grid x:Name="Bottom_LiftPin" Height="75" VerticalAlignment="Bottom" Margin="0,0,0,0" Grid.ColumnSpan="2" >
  190. <Grid.Resources>
  191. <Storyboard x:Key="BottomPinUp">
  192. <ThicknessAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Margin)" >
  193. <EasingThicknessKeyFrame KeyTime="0" Value="0,0,0,0"/>
  194. <EasingThicknessKeyFrame KeyTime="0:0:0.5" Value="0,0,0,15"/>
  195. </ThicknessAnimationUsingKeyFrames>
  196. </Storyboard>
  197. <Storyboard x:Key="BottomPinDown">
  198. <ThicknessAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Margin)" >
  199. <EasingThicknessKeyFrame KeyTime="0" Value="0,0,0,15"/>
  200. <EasingThicknessKeyFrame KeyTime="0:0:0.5" Value="0,0,0,0"/>
  201. </ThicknessAnimationUsingKeyFrames>
  202. </Storyboard>
  203. </Grid.Resources>
  204. <Grid.Style>
  205. <Style>
  206. <Style.Triggers>
  207. <DataTrigger Binding="{Binding IsLowerPinUp}" Value="true">
  208. <DataTrigger.EnterActions>
  209. <BeginStoryboard Storyboard="{StaticResource BottomPinUp}"/>
  210. </DataTrigger.EnterActions>
  211. <DataTrigger.ExitActions>
  212. <BeginStoryboard Storyboard="{StaticResource BottomPinDown}"/>
  213. </DataTrigger.ExitActions>
  214. </DataTrigger>
  215. </Style.Triggers>
  216. </Style>
  217. </Grid.Style>
  218. <!--<Rectangle HorizontalAlignment="Left" Fill="{DynamicResource Lid_BG1}" Stroke="{DynamicResource Lid_BD}" Width="8" Margin="10,6,0,4"/>-->
  219. <!--<Rectangle HorizontalAlignment="Right" Fill="{DynamicResource Lid_BG1}" Stroke="{DynamicResource Lid_BD}" Width="8" Margin="0,6,10,4"/>-->
  220. <!--<Rectangle Stroke="{DynamicResource Lid_BD}" Fill="{DynamicResource Lid_BG1}" StrokeThickness="1" VerticalAlignment="Bottom" Height="8" Margin="5,0"/>-->
  221. </Grid>
  222. <!--3寸 guide pin-->
  223. <Grid x:Name="Middle_LiftPin" Width="120" Height="63" VerticalAlignment="Bottom" Margin="20,0,20,12" Grid.ColumnSpan="2" >
  224. <Grid.Resources>
  225. <Storyboard x:Key="MidPinUp">
  226. <ThicknessAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Margin)" >
  227. <EasingThicknessKeyFrame KeyTime="0" Value="0,0,0,12"/>
  228. <EasingThicknessKeyFrame KeyTime="0:0:0.5" Value="0,0,0,27"/>
  229. </ThicknessAnimationUsingKeyFrames>
  230. </Storyboard>
  231. <Storyboard x:Key="MidPinDown">
  232. <ThicknessAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Margin)" >
  233. <EasingThicknessKeyFrame KeyTime="0" Value="0,0,0,27"/>
  234. <EasingThicknessKeyFrame KeyTime="0:0:0.5" Value="0,0,0,12"/>
  235. </ThicknessAnimationUsingKeyFrames>
  236. </Storyboard>
  237. </Grid.Resources>
  238. <Grid.Style>
  239. <Style>
  240. <Style.Triggers>
  241. <DataTrigger Binding="{Binding IsUpperPinUp}" Value="true">
  242. <DataTrigger.EnterActions>
  243. <BeginStoryboard Storyboard="{StaticResource MidPinUp}"/>
  244. </DataTrigger.EnterActions>
  245. <DataTrigger.ExitActions>
  246. <BeginStoryboard Storyboard="{StaticResource MidPinDown}"/>
  247. </DataTrigger.ExitActions>
  248. </DataTrigger>
  249. </Style.Triggers>
  250. </Style>
  251. </Grid.Style>
  252. <!--<Rectangle HorizontalAlignment="Left" Fill="{DynamicResource Lid_BG2}" Stroke="{DynamicResource Lid_BD}" Width="8" Margin="10,6,0,4"/>
  253. <Rectangle HorizontalAlignment="Right" Fill="{DynamicResource Lid_BG2}" Stroke="{DynamicResource Lid_BD}" Width="8" Margin="0,6,10,4"/>-->
  254. <!--<Rectangle Stroke="{DynamicResource Lid_BD}" Fill="{DynamicResource Lid_BG2}" StrokeThickness="1" VerticalAlignment="Bottom" Height="8" Margin="5,0"/>-->
  255. </Grid>
  256. <!--lift pin-->
  257. <Grid x:Name="Top_LiftPin" Height="51" VerticalAlignment="Bottom" Margin="0,0,0,28" Grid.ColumnSpan="2" >
  258. <Grid.Resources>
  259. <Storyboard x:Key="TopPinUp">
  260. <ThicknessAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Margin)" >
  261. <EasingThicknessKeyFrame KeyTime="0" Value="0,0,0,28"/>
  262. <EasingThicknessKeyFrame KeyTime="0:0:0.5" Value="0,0,0,54"/>
  263. </ThicknessAnimationUsingKeyFrames>
  264. </Storyboard>
  265. <Storyboard x:Key="TopPinDown">
  266. <ThicknessAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Margin)" >
  267. <EasingThicknessKeyFrame KeyTime="0" Value="0,0,0,54"/>
  268. <EasingThicknessKeyFrame KeyTime="0:0:0.5" Value="0,0,0,28"/>
  269. </ThicknessAnimationUsingKeyFrames>
  270. </Storyboard>
  271. </Grid.Resources>
  272. <Grid.Style>
  273. <Style>
  274. <Style.Triggers>
  275. <DataTrigger Binding="{Binding ElementName=chamber,Path=IsLiftPinUp}" Value="true">
  276. <DataTrigger.EnterActions>
  277. <BeginStoryboard Storyboard="{StaticResource TopPinUp}"/>
  278. </DataTrigger.EnterActions>
  279. <DataTrigger.ExitActions>
  280. <BeginStoryboard Storyboard="{StaticResource TopPinDown}"/>
  281. </DataTrigger.ExitActions>
  282. </DataTrigger>
  283. </Style.Triggers>
  284. </Style>
  285. </Grid.Style>
  286. <Rectangle HorizontalAlignment="Left" Fill="{DynamicResource Lid_BG3}" Stroke="{DynamicResource Lid_BD}" Width="8" Margin="48,10,0,4"/>
  287. <Rectangle HorizontalAlignment="Right" Fill="{DynamicResource Lid_BG3}" Stroke="{DynamicResource Lid_BD}" Width="8" Margin="0,10,48,4"/>
  288. <Rectangle Stroke="{DynamicResource Lid_BD}" Fill="{DynamicResource Lid_BG3}" StrokeThickness="1" VerticalAlignment="Bottom" Height="8" Margin="5,0" Width="64" />
  289. <Rectangle HorizontalAlignment="Center" Margin="-100,0" Width="{Binding WaferLength}" Height="10" VerticalAlignment="Top"/>
  290. <TextBlock Text="{Binding ElementName=chamber,Path=WaferID}" Margin="0,-20,0,0" TextAlignment="Center"></TextBlock>
  291. <Border BorderThickness="1" BorderBrush="DarkGray" CornerRadius="4" VerticalAlignment="Top" Height="10" Margin="0,0,0,0" Width="140" Visibility="{Binding ElementName=chamber,Path=IsHasWafer,Converter={StaticResource bool2VisibilityConverter}}">
  292. <Border.Background>
  293. <RadialGradientBrush >
  294. <GradientStop Color="AliceBlue" Offset="0" />
  295. <!--<GradientStop Color="Silver" Offset="0.5" />-->
  296. <GradientStop Color="LightGreen" Offset="1" />
  297. </RadialGradientBrush>
  298. </Border.Background>
  299. </Border>
  300. </Grid>
  301. <!--<Canvas Visibility="{Binding ElementName=chamber,Path=IsHasHeater,Converter={StaticResource bool2VisibilityConverter}}" Margin="29.5,100,0,0">
  302. <Rectangle HorizontalAlignment="Left" Fill="{DynamicResource Lid_BG3}" Stroke="Black" Width="100" Height="10"/>
  303. <Rectangle HorizontalAlignment="Left" Fill="{DynamicResource Lid_BG3}" Stroke="Black" Width="100" Height="10" Canvas.Top="10"/>
  304. <Rectangle HorizontalAlignment="Left" Fill="{DynamicResource Lid_BG3}" Stroke="Black" Width="30" Height="30" Canvas.Top="20" Canvas.Left="36"/>
  305. </Canvas>-->
  306. <!--左边slit door-->
  307. <Grid x:Name="Slit_valve" Margin="-41,-9,104,27" >
  308. <Grid.RowDefinitions>
  309. <RowDefinition/>
  310. <RowDefinition Height="74.75"/>
  311. </Grid.RowDefinitions>
  312. <!--<Grid.ContextMenu>
  313. <ContextMenu>
  314. <MenuItem Header="Open Door" Click="OpenDoor_Click" IsChecked="{Binding IsSlitDoorClosed, Converter={StaticResource BoolToBool}}" IsEnabled="{Binding IsSlitDoorClosed}"/>
  315. <MenuItem Header="Close Door" Click="CloseDoor_Click" IsChecked="{Binding IsSlitDoorClosed}" IsEnabled="{Binding IsSlitDoorClosed,Converter={StaticResource BoolToBool}}"/>
  316. </ContextMenu>
  317. </Grid.ContextMenu>-->
  318. <Rectangle x:Name="SlitValve_Top" Style="{StaticResource SlitValve_Animation}" Fill="{StaticResource doorColor}" VerticalAlignment="Top" Height="78" Margin="1,3,1,0" Grid.RowSpan="2" />
  319. <Rectangle x:Name="SlitValve_Bottom" Style="{StaticResource SlitValve_Animation}" Width="8" Fill="{StaticResource doorColor}" VerticalAlignment="Bottom" Height="70" Margin="1,70,1,0" Grid.RowSpan="2" />
  320. </Grid>
  321. <Grid x:Name="liner_valve" Margin="-8,-8,10,26" Grid.ColumnSpan="2" >
  322. <Grid.RowDefinitions>
  323. <RowDefinition Height="36*"/>
  324. <RowDefinition Height="75*"/>
  325. </Grid.RowDefinitions>
  326. <Grid.ContextMenu>
  327. <ContextMenu>
  328. <MenuItem Header="Open Liner Door" Click="OpenDoor_Click" IsChecked="{Binding IsLinerDoorClosed, Converter={StaticResource BoolToBool}}" IsEnabled="{Binding IsLinerDoorClosed}"/>
  329. <MenuItem Header="Close Liner Door" Click="CloseDoor_Click" IsChecked="{Binding IsLinerDoorClosed}" IsEnabled="{Binding IsLinerDoorClosed,Converter={StaticResource BoolToBool}}"/>
  330. </ContextMenu>
  331. </Grid.ContextMenu>
  332. <Rectangle x:Name="linerValve_Top" Fill="{StaticResource doorColor}" VerticalAlignment="Top" Height="36" Margin="-15,6,169,0" Grid.RowSpan="2" />
  333. <Rectangle x:Name="linerValve_Bottom" Style="{StaticResource SlitValve_Animation2}" Fill="{StaticResource doorColor}" VerticalAlignment="Top" Panel.ZIndex="3" Height="44" Margin="-16,34,168,0" Grid.RowSpan="2" />
  334. </Grid>
  335. <!--slit door右边-->
  336. <Grid Margin="118,-10,-40,29" Cursor="Hand" Grid.Column="1">
  337. <Rectangle Fill="{StaticResource doorColor}" Width="8" VerticalAlignment="Top" Height="68" Margin="1,7,1,0" />
  338. </Grid>
  339. </Grid>
  340. <Rectangle Fill="{StaticResource doorColor}" Width="8" VerticalAlignment="Bottom" Height="74" Margin="280,0,-71,1" Grid.Column="2" />
  341. <Rectangle x:Name="BG_Status_Copy4" Cursor="Hand" Margin="66,0,147,140" Grid.Column="2">
  342. <Rectangle.Style>
  343. <Style>
  344. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  345. </Style>
  346. </Rectangle.Style>
  347. </Rectangle>
  348. <Path Data="M0,0 L 100,0 100,100 90,100 90,10 0,10z" Stroke="Black" Stretch="Fill" Fill="black" Margin="4,86,194,35" RenderTransformOrigin="0.5,0.5" Grid.Column="2">
  349. <Path.RenderTransform>
  350. <TransformGroup>
  351. <ScaleTransform ScaleX="-1" ScaleY="-1"/>
  352. <SkewTransform/>
  353. <RotateTransform/>
  354. <TranslateTransform/>
  355. </TransformGroup>
  356. </Path.RenderTransform>
  357. </Path>
  358. </Grid>
  359. <Rectangle Fill="{StaticResource doorColor}" Width="8" VerticalAlignment="Top" Height="74" RenderTransformOrigin="0.5,0.5" Canvas.Left="264" Canvas.Top="132" HorizontalAlignment="Center" >
  360. <Rectangle.RenderTransform>
  361. <TransformGroup>
  362. <ScaleTransform/>
  363. <SkewTransform/>
  364. <RotateTransform Angle="89.935"/>
  365. <TranslateTransform/>
  366. </TransformGroup>
  367. </Rectangle.RenderTransform>
  368. </Rectangle>
  369. <Rectangle x:Name="BG_Status_Copy" Visibility="{Binding BiasRfPowerOnChamberVisibility}" Cursor="Hand" Height="59" Canvas.Left="228" Canvas.Top="173" Width="75" HorizontalAlignment="Center" VerticalAlignment="Center">
  370. <Rectangle.ContextMenu >
  371. <ContextMenu>
  372. <MenuItem Header="Create Wafer" Click="CreateWafer_Click" IsChecked="{Binding IsHasWafer}" IsEnabled="{Binding IsHasWafer, Converter={StaticResource BoolToBool}}"/>
  373. <MenuItem Header="Delete Wafer" Click="DeleteWafer_Click" IsChecked="{Binding IsHasWafer, Converter={StaticResource BoolToBool}}" IsEnabled="{Binding IsHasWafer}"/>
  374. </ContextMenu>
  375. </Rectangle.ContextMenu>
  376. <Rectangle.Style>
  377. <Style>
  378. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  379. <Style.Triggers>
  380. <DataTrigger Binding="{Binding IsBRFOn, ElementName=chamber}" Value="True">
  381. <Setter Property="Shape.Fill" Value="#FFFF9292"/>
  382. </DataTrigger>
  383. </Style.Triggers>
  384. </Style>
  385. </Rectangle.Style>
  386. </Rectangle>
  387. <Rectangle x:Name="SlitValve_Top_Copy" Fill="DimGray" Width="44" Height="239" HorizontalAlignment="Center" Canvas.Left="97.5" VerticalAlignment="Center" RenderTransformOrigin="0.5,0.5" Canvas.Top="-43" >
  388. <Rectangle.RenderTransform>
  389. <TransformGroup>
  390. <ScaleTransform/>
  391. <SkewTransform/>
  392. <RotateTransform Angle="89.857"/>
  393. <TranslateTransform/>
  394. </TransformGroup>
  395. </Rectangle.RenderTransform>
  396. </Rectangle>
  397. <Path Data="M0,0 L 50,100 100,0z" Stroke="#FF747474" Stretch="Fill" Height="22" Canvas.Top="62.167" Width="16" Canvas.Left="103" HorizontalAlignment="Center" VerticalAlignment="Top" Fill="WhiteSmoke"/>
  398. <Path Data="M0,0 L 100,0 100,100 90,100 90,10 0,10z" Stroke="Black" Stretch="Fill" Height="36" Canvas.Top="114" Width="31" HorizontalAlignment="Left" VerticalAlignment="Center" Fill="black"/>
  399. <Path Data="M0,0 L 80,0 80,10 10,10 10,210 -30,210 -30,200 0,200" Stroke="Black" Fill="black" Canvas.Left="199.75" Canvas.Top="118.375" Height="100" Stretch="Fill" Width="39" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  400. <Rectangle x:Name="BG_Status_Copy1" Visibility="{Binding BiasRfPowerOnChamberVisibility}" Cursor="Hand" Height="14" Canvas.Left="202" Canvas.Top="54" Width="6" HorizontalAlignment="Center" VerticalAlignment="Top" RenderTransformOrigin="0.583,0.361">
  401. <Rectangle.Style>
  402. <Style>
  403. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  404. <Style.Triggers>
  405. </Style.Triggers>
  406. </Style>
  407. </Rectangle.Style>
  408. </Rectangle>
  409. <Rectangle x:Name="BG_Status_Copy2" Cursor="Hand" Height="100" Canvas.Left="155" Canvas.Top="16" Width="6" HorizontalAlignment="Center" VerticalAlignment="Center" RenderTransformOrigin="0.5,0.5">
  410. <Rectangle.RenderTransform>
  411. <TransformGroup>
  412. <ScaleTransform/>
  413. <SkewTransform/>
  414. <RotateTransform Angle="89.868"/>
  415. <TranslateTransform/>
  416. </TransformGroup>
  417. </Rectangle.RenderTransform>
  418. <Rectangle.Style>
  419. <Style>
  420. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  421. </Style>
  422. </Rectangle.Style>
  423. </Rectangle>
  424. <Rectangle x:Name="BG_Status_Copy14" Cursor="Hand" Height="53" Canvas.Left="10" Canvas.Top="46" Width="21" HorizontalAlignment="Center" VerticalAlignment="Center">
  425. <Rectangle.Style>
  426. <Style>
  427. <Setter Property="Shape.Fill" Value="#D2B48C "/>
  428. </Style>
  429. </Rectangle.Style>
  430. </Rectangle>
  431. <Rectangle x:Name="SlitValve_Bottom_Copy" Fill="{StaticResource doorColor}" Width="10" Height="70" Canvas.Left="30" Canvas.Top="202" VerticalAlignment="Center" RenderTransformOrigin="0.5,0.5" HorizontalAlignment="Center" >
  432. <Rectangle.RenderTransform>
  433. <TransformGroup>
  434. <ScaleTransform/>
  435. <SkewTransform/>
  436. <RotateTransform Angle="90"/>
  437. <TranslateTransform/>
  438. </TransformGroup>
  439. </Rectangle.RenderTransform>
  440. </Rectangle>
  441. <Rectangle x:Name="SlitValve_Bottom_Copy2" Fill="{StaticResource doorColor}" Width="8" HorizontalAlignment="Center" Height="69" Canvas.Left="62" Canvas.Top="231" VerticalAlignment="Top" />
  442. <Rectangle x:Name="SlitValve_Bottom_Copy3" Fill="{StaticResource doorColor}" Width="8" Height="104" Canvas.Left="118" Canvas.Top="244" RenderTransformOrigin="0.5,0.5" HorizontalAlignment="Left" VerticalAlignment="Center" >
  443. <Rectangle.RenderTransform>
  444. <TransformGroup>
  445. <ScaleTransform/>
  446. <SkewTransform/>
  447. <RotateTransform Angle="90"/>
  448. <TranslateTransform/>
  449. </TransformGroup>
  450. </Rectangle.RenderTransform>
  451. </Rectangle>
  452. <Rectangle x:Name="SlitValve_Bottom_Copy11" Fill="{StaticResource doorColor}" Width="8" HorizontalAlignment="Center" Height="69" Canvas.Left="171" Canvas.Top="231" VerticalAlignment="Top" />
  453. <Rectangle x:Name="SlitValve_Bottom_Copy80" Fill="{StaticResource doorColor}" Width="8" Height="124" Canvas.Left="303" Canvas.Top="231" HorizontalAlignment="Left" VerticalAlignment="Center" >
  454. <Rectangle.RenderTransform>
  455. <TransformGroup>
  456. <ScaleTransform/>
  457. <SkewTransform/>
  458. <RotateTransform Angle="89.935"/>
  459. <TranslateTransform/>
  460. </TransformGroup>
  461. </Rectangle.RenderTransform>
  462. </Rectangle>
  463. <Rectangle x:Name="BG_Status_Copy17" Cursor="Hand" Height="16" Canvas.Left="166" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Center" VerticalAlignment="Top">
  464. <Rectangle.Style>
  465. <Style>
  466. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  467. </Style>
  468. </Rectangle.Style>
  469. </Rectangle>
  470. <Rectangle x:Name="BG_Status_Copy16" Cursor="Hand" Height="16" Canvas.Left="157" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  471. <Rectangle.Style>
  472. <Style>
  473. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  474. </Style>
  475. </Rectangle.Style>
  476. </Rectangle>
  477. <Rectangle x:Name="BG_Status_Copy13" Cursor="Hand" Height="16" Canvas.Left="148" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  478. <Rectangle.Style>
  479. <Style>
  480. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  481. </Style>
  482. </Rectangle.Style>
  483. </Rectangle>
  484. <Rectangle x:Name="BG_Status_Copy12" Cursor="Hand" Height="16" Canvas.Left="139" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  485. <Rectangle.Style>
  486. <Style>
  487. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  488. </Style>
  489. </Rectangle.Style>
  490. </Rectangle>
  491. <Rectangle x:Name="BG_Status_Copy11" Cursor="Hand" Height="16" Canvas.Left="130" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  492. <Rectangle.Style>
  493. <Style>
  494. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  495. </Style>
  496. </Rectangle.Style>
  497. </Rectangle>
  498. <Rectangle x:Name="BG_Status_Copy10" Cursor="Hand" Height="16" Canvas.Left="121" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  499. <Rectangle.Style>
  500. <Style>
  501. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  502. </Style>
  503. </Rectangle.Style>
  504. </Rectangle>
  505. <Rectangle x:Name="BG_Status_Copy9" Cursor="Hand" Height="16" Canvas.Left="112" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Center" VerticalAlignment="Center">
  506. <Rectangle.Style>
  507. <Style>
  508. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  509. </Style>
  510. </Rectangle.Style>
  511. </Rectangle>
  512. <Rectangle x:Name="BG_Status_Copy8" Cursor="Hand" Height="16" Canvas.Left="103" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  513. <Rectangle.Style>
  514. <Style>
  515. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  516. </Style>
  517. </Rectangle.Style>
  518. </Rectangle>
  519. <Rectangle x:Name="BG_Status_Copy7" Cursor="Hand" Height="16" Canvas.Left="94" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  520. <Rectangle.Style>
  521. <Style>
  522. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  523. </Style>
  524. </Rectangle.Style>
  525. </Rectangle>
  526. <Rectangle x:Name="BG_Status_Copy3" Cursor="Hand" Height="16" Canvas.Left="85" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  527. <Rectangle.Style>
  528. <Style>
  529. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  530. </Style>
  531. </Rectangle.Style>
  532. </Rectangle>
  533. <Rectangle x:Name="BG_Status_Copy5" Cursor="Hand" Height="16" Canvas.Left="76" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  534. <Rectangle.Style>
  535. <Style>
  536. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  537. </Style>
  538. </Rectangle.Style>
  539. </Rectangle>
  540. <Rectangle x:Name="BG_Status_Copy6" Cursor="Hand" Height="16" Canvas.Left="67" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  541. <Rectangle.Style>
  542. <Style>
  543. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  544. </Style>
  545. </Rectangle.Style>
  546. </Rectangle>
  547. <Rectangle x:Name="BG_Status_Copy18" Cursor="Hand" Height="16" Canvas.Left="58" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  548. <Rectangle.Style>
  549. <Style>
  550. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  551. </Style>
  552. </Rectangle.Style>
  553. </Rectangle>
  554. <Rectangle x:Name="BG_Status_Copy19" Cursor="Hand" Height="16" Canvas.Left="49" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  555. <Rectangle.Style>
  556. <Style>
  557. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  558. </Style>
  559. </Rectangle.Style>
  560. </Rectangle>
  561. <Rectangle x:Name="BG_Status_Copy17复制__C_" Cursor="Hand" Height="16" Canvas.Left="175" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  562. <Rectangle.Style>
  563. <Style>
  564. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  565. </Style>
  566. </Rectangle.Style>
  567. </Rectangle>
  568. <Rectangle x:Name="BG_Status_Copy17复制__C_1" Cursor="Hand" Height="16" Canvas.Left="184" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  569. <Rectangle.Style>
  570. <Style>
  571. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  572. </Style>
  573. </Rectangle.Style>
  574. </Rectangle>
  575. <Rectangle x:Name="BG_Status_Copy17复制__C_1复制__C_" Cursor="Hand" Height="16" Canvas.Left="193" Canvas.Top="83" Width="4" RenderTransformOrigin="-0.375,0.425" HorizontalAlignment="Left" VerticalAlignment="Center">
  576. <Rectangle.Style>
  577. <Style>
  578. <Setter Property="Shape.Fill" Value="WhiteSmoke"/>
  579. </Style>
  580. </Rectangle.Style>
  581. </Rectangle>
  582. </Canvas>
  583. </UserControl>