|
@@ -10,13 +10,13 @@
|
|
<Storyboard x:Key="SlitValve_Open">
|
|
<Storyboard x:Key="SlitValve_Open">
|
|
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Height)" >
|
|
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Height)" >
|
|
<EasingDoubleKeyFrame KeyTime="0" Value="75"/>
|
|
<EasingDoubleKeyFrame KeyTime="0" Value="75"/>
|
|
- <EasingDoubleKeyFrame KeyTime="0:0:3" Value="42"/>
|
|
|
|
|
|
+ <EasingDoubleKeyFrame KeyTime="0:0:1" Value="42"/>
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
</Storyboard>
|
|
<Storyboard x:Key="SlitValve_Close">
|
|
<Storyboard x:Key="SlitValve_Close">
|
|
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Height)" >
|
|
<DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(FrameworkElement.Height)" >
|
|
<EasingDoubleKeyFrame KeyTime="0" Value="42"/>
|
|
<EasingDoubleKeyFrame KeyTime="0" Value="42"/>
|
|
- <EasingDoubleKeyFrame KeyTime="0:0:3" Value="75"/>
|
|
|
|
|
|
+ <EasingDoubleKeyFrame KeyTime="0:0:1" Value="75"/>
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</DoubleAnimationUsingKeyFrames>
|
|
</Storyboard>
|
|
</Storyboard>
|
|
<Style TargetType="{x:Type Rectangle}" x:Key="SlitValve_Animation" >
|
|
<Style TargetType="{x:Type Rectangle}" x:Key="SlitValve_Animation" >
|
|
@@ -33,7 +33,7 @@
|
|
</Style>
|
|
</Style>
|
|
</UserControl.Resources>
|
|
</UserControl.Resources>
|
|
<Canvas >
|
|
<Canvas >
|
|
-
|
|
|
|
|
|
+
|
|
<Grid Width="240" Height="190" Canvas.Top="80">
|
|
<Grid Width="240" Height="190" Canvas.Top="80">
|
|
<Grid.RowDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="160"/>
|
|
<RowDefinition Height="160"/>
|
|
@@ -64,6 +64,12 @@
|
|
</Rectangle.Fill>
|
|
</Rectangle.Fill>
|
|
</Rectangle>
|
|
</Rectangle>
|
|
<Rectangle x:Name="BG_Status" Margin="9,19" Visibility="{Binding BiasRfPowerOnChamberVisibility}" >
|
|
<Rectangle x:Name="BG_Status" Margin="9,19" Visibility="{Binding BiasRfPowerOnChamberVisibility}" >
|
|
|
|
+ <Rectangle.ContextMenu >
|
|
|
|
+ <ContextMenu>
|
|
|
|
+ <MenuItem Header="Create Wafer" Click="CreateWafer_Click" IsChecked="{Binding IsHasWafer}" IsEnabled="{Binding IsHasWafer,Converter={StaticResource BoolToBool}}"/>
|
|
|
|
+ <MenuItem Header="Delete Wafer" Click="DeleteWafer_Click" IsChecked="{Binding IsHasWafer,Converter={StaticResource BoolToBool}}" IsEnabled="{Binding IsHasWafer}"/>
|
|
|
|
+ </ContextMenu>
|
|
|
|
+ </Rectangle.ContextMenu>
|
|
<Rectangle.Style>
|
|
<Rectangle.Style>
|
|
<Style>
|
|
<Style>
|
|
<Setter Property="Rectangle.Fill" Value="WhiteSmoke"/>
|
|
<Setter Property="Rectangle.Fill" Value="WhiteSmoke"/>
|
|
@@ -307,7 +313,13 @@
|
|
</Grid>
|
|
</Grid>
|
|
|
|
|
|
<!--slit door右边-->
|
|
<!--slit door右边-->
|
|
- <Grid Margin="190,-10,-40,29" >
|
|
|
|
|
|
+ <Grid Margin="190,-10,-40,29" Cursor="Hand">
|
|
|
|
+ <Grid.ContextMenu>
|
|
|
|
+ <ContextMenu >
|
|
|
|
+ <MenuItem Header="Open Door" Click="OpenDoor_Click" IsChecked="{Binding IsSlitDoorClosed,Converter={StaticResource BoolToBool}}" IsEnabled="{Binding IsSlitDoorClosed}"/>
|
|
|
|
+ <MenuItem Header="Close Door" Click="CloseDoor_Click" IsChecked="{Binding IsSlitDoorClosed}" IsEnabled="{Binding IsSlitDoorClosed,Converter={StaticResource BoolToBool}}"/>
|
|
|
|
+ </ContextMenu>
|
|
|
|
+ </Grid.ContextMenu>
|
|
<Rectangle Fill="DimGray" Style="{StaticResource SlitValve_Animation}" Width="8" VerticalAlignment="Top" Height="75" />
|
|
<Rectangle Fill="DimGray" Style="{StaticResource SlitValve_Animation}" Width="8" VerticalAlignment="Top" Height="75" />
|
|
<Rectangle Fill="DimGray" Style="{StaticResource SlitValve_Animation}" Width="8" VerticalAlignment="Bottom" Height="75" />
|
|
<Rectangle Fill="DimGray" Style="{StaticResource SlitValve_Animation}" Width="8" VerticalAlignment="Bottom" Height="75" />
|
|
</Grid>
|
|
</Grid>
|