EFEM.xaml 2.2 KB

1234567891011121314151617181920212223242526
  1. <uc:ViewModelControl x:Class="Aitex.Sorter.UI.Controls.EFEM"
  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:Aitex.Sorter.UI.Controls"
  7. xmlns:uc="clr-namespace:Aitex.Sorter.UI.Controls"
  8. xmlns:Common="clr-namespace:Aitex.Sorter.Common;assembly=Aitex.Sorter.Common"
  9. xmlns:equipment="clr-namespace:MECF.Framework.Common.Equipment;assembly=MECF.Framework.Common"
  10. mc:Ignorable="d"
  11. d:DesignHeight="450" d:DesignWidth="800">
  12. <Viewbox>
  13. <Grid x:Name="root">
  14. <Image Width="625" Height="198" Source="/Aitex.Sorter.UI;component/Resources/images/EFEMbg2.png" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,10"></Image>
  15. <local:Aligner Width="50" Height="50" Wafer="{Binding AlignerWafer}" Margin="321,82,264,86" Command="{Binding DeviceOperationCommand}" />
  16. <!--<Image Width="114" Height="95" Source="/Aitex.Sorter.UI;component/Resources/images/rs70000/aligner.png" Margin="52,20,298,86.6" />-->
  17. <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" />
  18. <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" />
  19. <uc:AtmRobot Width="320" RotateAngle="180" Wafer1="{Binding RobotWafer1}" Wafer2="{Binding RobotWafer2}" Command="{Binding DeviceOperationCommand}" RobotBladeTarget="{Binding RobotBladeTarget}" Margin="154,39,161,-39" />
  20. <local:Door State="{Binding LPBDoorState}" Width="60" Height="15" Margin="166,193,409,10" />
  21. <local:Door State="{Binding LPADoorState}" Width="60" Height="15" Margin="52,193,523,10" />
  22. </Grid>
  23. </Viewbox>
  24. </uc:ViewModelControl>