123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- using System.Collections.Generic;
- using Aitex.Core.Common;
- using Aitex.Sorter.UI.Controls;
- namespace EfemUI.Controls
- {
- /// <summary>
- /// EFEM4.xaml 的交互逻辑
- /// </summary>
- public partial class EFEMRunsemiWet : EFEMBase
- {
- public EFEMRunsemiWet() : base()
- {
- InitializeComponent();
- root.DataContext = this;
- }
- public WaferInfo Loadlock1Wafer
- {
- get;
- set;
- }
- public WaferInfo Loadlock2Wafer
- {
- get;
- set;
- }
- public WaferInfo Loadlock3Wafer
- {
- get;
- set;
- }
- public WaferInfo Loadlock4Wafer
- {
- get;
- set;
- }
- protected override void DoWaferTransferOption(WaferTransferOption option)
- {
- option.Setting.ShowAlign = true;
- option.Setting.ShowLaserMarker = false;
- option.Setting.ShowT7Code = false;
- }
- // public override Dictionary<string, StationPosition> StationPosition
- // {
- // get
- // {
- // return new Dictionary<string, StationPosition> {
- // { "System", new StationPosition() {
- // StartPosition = new RobotPosition() { X=-223,Root = 90, Arm = 180, Hand = 180 }
- // ,EndPosition = new RobotPosition() { X=-223,Root = 90, Arm = 180, Hand = 180 }}
- //}
- //,{ "Robot", new StationPosition() {
- // StartPosition = new RobotPosition() { Root = 90, Arm = 180, Hand = 180 }
- // ,EndPosition = new RobotPosition() { Root = 90, Arm = 180, Hand = 180 }}
- //}
- //,{ "LP1", new StationPosition() {
- // StartPosition = new RobotPosition() { X=-220, Root = 8, Arm = 166, Hand = 276 }
- // ,EndPosition = new RobotPosition() { Root = 25, Arm = 130, Hand = 294 }}
- //}
- //,{ "LP2", new StationPosition() {
- // StartPosition = new RobotPosition() { X=-103, Root = 8, Arm = 166, Hand = 276 }
- // ,EndPosition = new RobotPosition() { Root = 25, Arm = 130, Hand = 294 }}
- //}
- //,{ "LP3", new StationPosition() {
- // StartPosition = new RobotPosition() { X=7,Root = 8, Arm = 166, Hand = 276 }
- // ,EndPosition = new RobotPosition() { Root = 25, Arm = 130, Hand = 294 }}
- //}
- //,{ "LP4", new StationPosition() {
- // StartPosition = new RobotPosition() { X=123, Root = 8, Arm = 166, Hand = 276 }
- // ,EndPosition = new RobotPosition() { Root = 25, Arm = 130, Hand = 294 }}
- //}
- // ,{ "LL1", new StationPosition() {
- // StartPosition = new RobotPosition() { X=-60, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // ,{ "LL2", new StationPosition() {
- // StartPosition = new RobotPosition() { X=-60, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // ,{ "LL3", new StationPosition() {
- // StartPosition = new RobotPosition() { X=-60, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // ,{ "LL4", new StationPosition() {
- // StartPosition = new RobotPosition() { X=-60, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // ,{ "LL5", new StationPosition() {
- // StartPosition = new RobotPosition() { X=90, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // ,{ "LL6", new StationPosition() {
- // StartPosition = new RobotPosition() { X=90, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // ,{ "LL7", new StationPosition() {
- // StartPosition = new RobotPosition() { X=90, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // ,{ "LL8", new StationPosition() {
- // StartPosition = new RobotPosition() { X=90, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // };
- // }
- // }
- }
- }
|