1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- using System.Collections.Generic;
- using Aitex.Core.Common;
- using Aitex.Sorter.UI.Controls;
- namespace EfemUI.Controls
- {
- /// <summary>
- /// EFEM4.xaml 的交互逻辑
- /// </summary>
- public partial class EFEM3LPNXC100 : EFEMBase
- {
- public EFEM3LPNXC100() : 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=-220, Root = 25, Arm = 132, Hand = 113 }
- // ,EndPosition = new RobotPosition() { Root = 0, Arm = 192, Hand = 78 }}
- // }
- // ,{ "LL2", new StationPosition() {
- // StartPosition = new RobotPosition() { X=-103, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // ,{ "LL3", new StationPosition() {
- // StartPosition = new RobotPosition() { X=12, Root = 158, Arm = 225, Hand = 248 }
- // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
- // }
- // };
- // }
- // }
- }
- }
|