1234567891011121314151617181920212223242526 |
- <uc:ViewModelControl x:Class="Aitex.Sorter.UI.Controls.EFEM"
- 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:Aitex.Sorter.UI.Controls"
- xmlns:uc="clr-namespace:Aitex.Sorter.UI.Controls"
- xmlns:Common="clr-namespace:Aitex.Sorter.Common;assembly=Aitex.Sorter.Common"
- xmlns:equipment="clr-namespace:MECF.Framework.Common.Equipment;assembly=MECF.Framework.Common"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Viewbox>
- <Grid x:Name="root">
- <Image Width="625" Height="198" Source="/Aitex.Sorter.UI;component/Resources/images/EFEMbg2.png" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,10"></Image>
- <local:Aligner Width="50" Height="50" Wafer="{Binding AlignerWafer}" Margin="321,82,264,86" Command="{Binding DeviceOperationCommand}" />
- <!--<Image Width="114" Height="95" Source="/Aitex.Sorter.UI;component/Resources/images/rs70000/aligner.png" Margin="52,20,298,86.6" />-->
- <uc:LoadPort x:Name="lpA" Station="{Binding Source={x:Static equipment:ModuleName.LP1}}" Label="LP1" Command="{Binding DeviceOperationCommand}" CassetteState="{Binding LPACassetteState}" DoorState="{Binding LPADoorState}" Height="80" Width="100" Margin="32,208,503,-70" />
- <uc:LoadPort x:Name="lpB" Station="{Binding Source={x:Static equipment:ModuleName.LP2}}" Label="LP2" Command="{Binding DeviceOperationCommand}" CassetteState="{Binding LPBCassetteState}" DoorState="{Binding LPBDoorState}" Height="80" Width="100" Margin="145,208,390,-70" />
- <uc:AtmRobot Width="320" RotateAngle="180" Wafer1="{Binding RobotWafer1}" Wafer2="{Binding RobotWafer2}" Command="{Binding DeviceOperationCommand}" RobotBladeTarget="{Binding RobotBladeTarget}" Margin="154,39,161,-39" />
- <local:Door State="{Binding LPBDoorState}" Width="60" Height="15" Margin="166,193,409,10" />
- <local:Door State="{Binding LPADoorState}" Width="60" Height="15" Margin="52,193,523,10" />
- </Grid>
- </Viewbox>
- </uc:ViewModelControl>
|