EFEM.xaml.cs 784 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using OpenSEMI.ClientBase;
  9. namespace Venus_Themes.UserControls
  10. {
  11. /// <summary>
  12. /// EFEM.xaml 的交互逻辑
  13. /// </summary>
  14. public partial class EFEM : UserControl
  15. {
  16. public EFEM()
  17. {
  18. InitializeComponent();
  19. }
  20. public static readonly DependencyProperty Aligner1WaferProperty = DependencyProperty.Register(
  21. "Aligner1Wafer", typeof(WaferInfo), typeof(EFEM));
  22. public WaferInfo Aligner1Wafer
  23. {
  24. get => (WaferInfo)GetValue(Aligner1WaferProperty);
  25. set => SetValue(Aligner1WaferProperty, value);
  26. }
  27. }
  28. }