EFEM4.xaml 3.0 KB

12345678910111213141516171819202122232425262728293031
  1. <uc:ViewModelControl x:Class="Aitex.Sorter.UI.Controls.EFEM4"
  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/EFEMbg.png" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,10"></Image>
  15. <local:Aligner Width="50" Height="50" Wafer="{Binding AlignerWafer}" Margin="521,82,50,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="25,208,510,-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="136,208,399,-70" />
  19. <uc:LoadPort x:Name="lpC" Station="{Binding Source={x:Static equipment:ModuleName.LP3}}" Label="LP3" Command="{Binding DeviceOperationCommand}" CassetteState="{Binding LPCCassetteState}" DoorState="{Binding LPCDoorState}" Height="80" Width="100" Margin="248,208,287,-70" />
  20. <uc:LoadPort x:Name="lpD" Station="{Binding Source={x:Static equipment:ModuleName.LP4}}" Label="LP4" Command="{Binding DeviceOperationCommand}" CassetteState="{Binding LPDCassetteState}" DoorState="{Binding LPDDoorState}" Height="80" Width="100" Margin="361,208,174,-70" />
  21. <local:Invertion Width="150" Margin="168,-148,317,148" />
  22. <uc:AtmRobot4LP Width="320" RotateAngle="180" Wafer1="{Binding RobotWafer1}" Wafer2="{Binding RobotWafer2}" Command="{Binding DeviceOperationCommand}" RobotBladeTarget="{Binding RobotBladeTarget}" Margin="256,39,59,-39" />
  23. <local:Door State="{Binding LPBDoorState}" Width="60" Height="15" Margin="156,193,419,10" />
  24. <local:Door State="{Binding LPADoorState}" Width="60" Height="15" Margin="44,193,531,10" />
  25. <local:Door State="{Binding LPADoorState}" Width="60" Height="15" Margin="381,193,194,10" />
  26. <local:Door State="{Binding LPADoorState}" Width="60" Height="15" Margin="268,193,307,10" />
  27. </Grid>
  28. </Viewbox>
  29. </uc:ViewModelControl>