EFEM3LPNXC100.xaml.cs 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. using System.Collections.Generic;
  2. using Aitex.Core.Common;
  3. using Aitex.Sorter.UI.Controls;
  4. namespace EfemUI.Controls
  5. {
  6. /// <summary>
  7. /// EFEM4.xaml 的交互逻辑
  8. /// </summary>
  9. public partial class EFEM3LPNXC100 : EFEMBase
  10. {
  11. public EFEM3LPNXC100() : base()
  12. {
  13. InitializeComponent();
  14. root.DataContext = this;
  15. }
  16. public WaferInfo Loadlock1Wafer
  17. {
  18. get;
  19. set;
  20. }
  21. public WaferInfo Loadlock2Wafer
  22. {
  23. get;
  24. set;
  25. }
  26. public WaferInfo Loadlock3Wafer
  27. {
  28. get;
  29. set;
  30. }
  31. public WaferInfo Loadlock4Wafer
  32. {
  33. get;
  34. set;
  35. }
  36. protected override void DoWaferTransferOption(WaferTransferOption option)
  37. {
  38. option.Setting.ShowAlign = true;
  39. option.Setting.ShowLaserMarker = false;
  40. option.Setting.ShowT7Code = false;
  41. }
  42. // public override Dictionary<string, StationPosition> StationPosition
  43. // {
  44. // get
  45. // {
  46. // return new Dictionary<string, StationPosition> {
  47. // { "System", new StationPosition() {
  48. // StartPosition = new RobotPosition() { X=-223,Root = 90, Arm = 180, Hand = 180 }
  49. // ,EndPosition = new RobotPosition() { X=-223,Root = 90, Arm = 180, Hand = 180 }}
  50. //}
  51. //,{ "Robot", new StationPosition() {
  52. // StartPosition = new RobotPosition() { Root = 90, Arm = 180, Hand = 180 }
  53. // ,EndPosition = new RobotPosition() { Root = 90, Arm = 180, Hand = 180 }}
  54. //}
  55. //,{ "LP1", new StationPosition() {
  56. // StartPosition = new RobotPosition() { X=-220, Root = 8, Arm = 166, Hand = 276 }
  57. // ,EndPosition = new RobotPosition() { Root = 25, Arm = 130, Hand = 294 }}
  58. //}
  59. //,{ "LP2", new StationPosition() {
  60. // StartPosition = new RobotPosition() { X=-103, Root = 8, Arm = 166, Hand = 276 }
  61. // ,EndPosition = new RobotPosition() { Root = 25, Arm = 130, Hand = 294 }}
  62. //}
  63. //,{ "LP3", new StationPosition() {
  64. // StartPosition = new RobotPosition() { X=7,Root = 8, Arm = 166, Hand = 276 }
  65. // ,EndPosition = new RobotPosition() { Root = 25, Arm = 130, Hand = 294 }}
  66. //}
  67. //,{ "LP4", new StationPosition() {
  68. // StartPosition = new RobotPosition() { X=123, Root = 8, Arm = 166, Hand = 276 }
  69. // ,EndPosition = new RobotPosition() { Root = 25, Arm = 130, Hand = 294 }}
  70. //}
  71. // ,{ "LL1", new StationPosition() {
  72. // StartPosition = new RobotPosition() { X=-220, Root = 25, Arm = 132, Hand = 113 }
  73. // ,EndPosition = new RobotPosition() { Root = 0, Arm = 192, Hand = 78 }}
  74. // }
  75. // ,{ "LL2", new StationPosition() {
  76. // StartPosition = new RobotPosition() { X=-103, Root = 158, Arm = 225, Hand = 248 }
  77. // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
  78. // }
  79. // ,{ "LL3", new StationPosition() {
  80. // StartPosition = new RobotPosition() { X=12, Root = 158, Arm = 225, Hand = 248 }
  81. // ,EndPosition = new RobotPosition() { Root = 185, Arm = 166, Hand = 280 }}
  82. // }
  83. // };
  84. // }
  85. // }
  86. }
  87. }