123456789101112131415161718192021222324 |
- <UserControl x:Class="VirgoUI.Controls.Parts.Loadlock"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:VirgoUI.Controls.Parts"
- xmlns:ctrl="http://OpenSEMI.Ctrlib.com/presentation"
- xmlns:parts="clr-namespace:VirgoUI.Client.Controls.Parts"
- mc:Ignorable="d"
- x:Name="self"
- Width="95" Height="110">
- <Grid x:Name="root" Width="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualHeight}">
- <StackPanel Orientation="Vertical">
- <Grid Grid.Row="1" VerticalAlignment="Top">
- <Image Source="/VirgoUI;component/Themes/images/parts/loadlock.png"/>
- <!--<local:Wafer WaferStyle="Eclipse" WaferItem="{Binding Path=Wafer, ElementName=self}" Station ="{Binding Path=Station, ElementName=self}" Slot="1" Margin="18,16,18,18" />-->
- <local:WaferCtrl WaferData="{Binding Path=WaferData, ElementName=self}" />
- </Grid>
- <parts:Door Grid.Row="2" State="{Binding Path=ATMDoorState, ElementName=self}" />
- </StackPanel>
- </Grid>
- </UserControl>
|