NiceTMChamber.xaml.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. using OpenSEMI.ClientBase;
  2. using System.Windows;
  3. using System.Windows.Controls;
  4. namespace Venus_Themes.UserControls
  5. {
  6. /// <summary>
  7. /// NiceTMChamber.xaml 的交互逻辑
  8. /// </summary>
  9. public partial class NiceTMChamber : UserControl
  10. {
  11. public NiceTMChamber()
  12. {
  13. InitializeComponent();
  14. }
  15. public static readonly DependencyProperty RobotWaferProperty = DependencyProperty.Register(
  16. "RobotWafer", typeof(WaferInfo), typeof(NiceTMChamber));
  17. public WaferInfo RobotWafer
  18. {
  19. get => (WaferInfo)GetValue(RobotWaferProperty);
  20. set => SetValue(RobotWaferProperty, value);
  21. }
  22. public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register(
  23. "RotateTransformValue", typeof(int), typeof(NiceTMChamber));
  24. public int RotateTransformValue
  25. {
  26. get { return (int)this.GetValue(RotateTransformValueProperty); }
  27. set { this.SetValue(RotateTransformValueProperty, value); }
  28. }
  29. public static readonly DependencyProperty ModuleNameProperty = DependencyProperty.Register(
  30. "ModuleName", typeof(string), typeof(NiceTMChamber));
  31. public string ModuleName
  32. {
  33. get { return (string)this.GetValue(ModuleNameProperty); }
  34. set
  35. {
  36. this.SetValue(ModuleNameProperty, value);
  37. }
  38. }
  39. public static readonly DependencyProperty PMVisibilityProperty = DependencyProperty.Register(
  40. "PMVisibility", typeof(Visibility), typeof(NiceTMChamber));
  41. public Visibility PMVisibility
  42. {
  43. get => (Visibility)GetValue(PMVisibilityProperty);
  44. set => SetValue(PMVisibilityProperty, value);
  45. }
  46. }
  47. }