LoadLockRight.xaml.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using OpenSEMI.ClientBase;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Navigation;
  15. using System.Windows.Shapes;
  16. namespace Venus_Themes.UserControls
  17. {
  18. /// <summary>
  19. /// LoadLockRight.xaml 的交互逻辑
  20. /// </summary>
  21. public partial class LoadLockRight : UserControl
  22. {
  23. public LoadLockRight()
  24. {
  25. InitializeComponent();
  26. }
  27. public static readonly DependencyProperty DoorIsOpenProperty = DependencyProperty.Register(
  28. "DoorIsOpen", typeof(bool), typeof(LoadLockRight));
  29. public bool DoorIsOpen
  30. {
  31. get { return (bool)this.GetValue(DoorIsOpenProperty); }
  32. set
  33. {
  34. this.SetValue(DoorIsOpenProperty, value);
  35. }
  36. }
  37. public static readonly DependencyProperty RobotWaferProperty = DependencyProperty.Register(
  38. "RobotWafer", typeof(WaferInfo), typeof(LoadLockRight));
  39. public WaferInfo RobotWafer
  40. {
  41. get => (WaferInfo)GetValue(RobotWaferProperty);
  42. set => SetValue(RobotWaferProperty, value);
  43. }
  44. }
  45. }