123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using OpenSEMI.ClientBase;
- using System.Windows;
- using System.Windows.Controls;
- namespace Venus_Themes.UserControls
- {
- /// <summary>
- /// NiceTMChamber.xaml 的交互逻辑
- /// </summary>
- public partial class NiceTMChamber : UserControl
- {
- public NiceTMChamber()
- {
- InitializeComponent();
- }
- public static readonly DependencyProperty RobotWaferProperty = DependencyProperty.Register(
- "RobotWafer", typeof(WaferInfo), typeof(NiceTMChamber));
- public WaferInfo RobotWafer
- {
- get => (WaferInfo)GetValue(RobotWaferProperty);
- set => SetValue(RobotWaferProperty, value);
- }
- public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register(
- "RotateTransformValue", typeof(int), typeof(NiceTMChamber));
- public int RotateTransformValue
- {
- get { return (int)this.GetValue(RotateTransformValueProperty); }
- set { this.SetValue(RotateTransformValueProperty, value); }
- }
- public static readonly DependencyProperty ModuleNameProperty = DependencyProperty.Register(
- "ModuleName", typeof(string), typeof(NiceTMChamber));
- public string ModuleName
- {
- get { return (string)this.GetValue(ModuleNameProperty); }
- set
- {
- this.SetValue(ModuleNameProperty, value);
- }
- }
- public static readonly DependencyProperty PMVisibilityProperty = DependencyProperty.Register(
- "PMVisibility", typeof(Visibility), typeof(NiceTMChamber));
- public Visibility PMVisibility
- {
- get => (Visibility)GetValue(PMVisibilityProperty);
- set => SetValue(PMVisibilityProperty, value);
- }
- }
- }
|