using OpenSEMI.ClientBase; using System.Windows; using System.Windows.Controls; namespace Venus_Themes.UserControls { /// /// NiceTMChamber.xaml 的交互逻辑 /// 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); } } }