EfemView.xaml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <UserControl x:Class="Venus_MainPages.Views.EfemView"
  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:Venus_MainPages.Views"
  7. xmlns:customControls="clr-namespace:Venus_Themes.CustomControls;assembly=Venus_Themes"
  8. xmlns:userControls="clr-namespace:Venus_Themes.UserControls;assembly=Venus_Themes"
  9. mc:Ignorable="d"
  10. d:DesignHeight="450" d:DesignWidth="800">
  11. <Canvas>
  12. <Canvas >
  13. <Viewbox Width="700" Height="700" Canvas.Top="100" Stretch="Fill">
  14. <Canvas Width="1000" Height="1000">
  15. <!--<userControls:MainTM Width="300" Height="250" Canvas.Left="380" Canvas.Top="90"/>
  16. <customControls:WaferRobotControl OriginT="PMA" Canvas.Left="410" Canvas.Top="76" Width="200" Height="300" x:Name="robot" RobotTAction="{Binding Robot1TAction}" RobotXAction="{Binding Robot1XAction}" RobotWafer="{Binding BladeAWafer}"/>
  17. <customControls:WaferRobotControl OriginT="PMD" Canvas.Left="410" Canvas.Top="76" Width="200" Height="300" x:Name="robot2" RobotTAction="{Binding Robot2TAction}" RobotXAction="{Binding Robot2XAction}" RobotWafer="{Binding BladeBWafer}"/>
  18. <userControls:LoadLockLeft Width="150" Height="150" Canvas.Top="310" Canvas.Left="358" DoorIsOpen="{Binding RtDataValues[TM.LLATSlitDoor.IsClosed],Converter={StaticResource BoolToBool}}" Visibility="{Binding LLAIsInstalled,Converter={StaticResource bool2VisibilityConverter}}" RobotWafer="{Binding LLAWafer}"/>
  19. <userControls:LoadLockRight Width="150" Height="150" Canvas.Top="309" Canvas.Left="519" DoorIsOpen="{Binding RtDataValues[TM.LLBTSlitDoor.IsClosed],Converter={StaticResource BoolToBool}}" Visibility="{Binding LLBIsInstalled,Converter={StaticResource bool2VisibilityConverter}}" RobotWafer="{Binding LLBWafer}"/>-->
  20. <!--<userControls:TMChamber x:Name="PMA" Canvas.Top="302" Canvas.Left="233" Width="140" Height="140" RotateTransformValue="-90" DoorIsOpen="{Binding RtDataValues[PMA.IsSlitDoorClosed],Converter={StaticResource BoolToBool}}" RobotWafer="{Binding PMAWafer}" Visibility="{Binding PMAIsInstalled,Converter={StaticResource bool2VisibilityConverter}}"/>
  21. <userControls:TMChamber x:Name="PMB" Canvas.Top="28" Canvas.Left="315" Width="140" Height="140" RotateTransformValue="-28" DoorIsOpen="{Binding RtDataValues[PMB.IsSlitDoorClosed],Converter={StaticResource BoolToBool}}" RobotWafer="{Binding PMBWafer}" />
  22. <userControls:TMChamber x:Name="PMC" Canvas.Top="-38" Canvas.Left="588" Width="140" Height="140" RotateTransformValue="30" DoorIsOpen="{Binding RtDataValues[PMC.IsSlitDoorClosed],Converter={StaticResource BoolToBool}}" RobotWafer="{Binding PMCWafer}" />
  23. <userControls:TMChamber x:Name="PMD" Canvas.Top="160" Canvas.Left="788" Width="140" Height="140" RotateTransformValue="90" DoorIsOpen="{Binding RtDataValues[PMD.IsSlitDoorClosed],Converter={StaticResource BoolToBool}}" RobotWafer="{Binding PMDWafer}" />-->
  24. <userControls:EFEM Width="600" Height="300" Canvas.Left="200" Canvas.Top="462"/>
  25. <customControls:WaferRobotControl OriginT="PMA" Canvas.Left="400" Canvas.Top="460" Width="200" Height="300" RobotTAction="{Binding Robot1TAction}" RobotXAction="{Binding Robot1XAction}" RobotWafer="{Binding BladeAWafer}"/>
  26. <customControls:WaferRobotControl OriginT="PMD" Canvas.Left="400" Canvas.Top="460" Width="200" Height="300" RobotTAction="{Binding Robot2TAction}" RobotXAction="{Binding Robot2XAction}" RobotWafer="{Binding BladeBWafer}"/>
  27. </Canvas>
  28. </Viewbox>
  29. </Canvas>
  30. </Canvas>
  31. </UserControl>