1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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);
- }
- }
- }
|