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); } public static readonly DependencyProperty PressureValueProperty = DependencyProperty.Register( "PressureValue", typeof(double), typeof(NiceTMChamber)); public double PressureValue { get { return (double)this.GetValue(PressureValueProperty); } set { this.SetValue(PressureValueProperty, value); } } public static readonly DependencyProperty UnitProperty = DependencyProperty.Register( "Unit", typeof(string), typeof(NiceTMChamber), new PropertyMetadata("mTorr")); public string Unit { get { return (string)this.GetValue(UnitProperty); } set { this.SetValue(UnitProperty, value); } } public static readonly DependencyProperty ChamberTypeProperty = DependencyProperty.Register( "ChamberType", typeof(string), typeof(NiceTMChamber)); public string ChamberType { get { return (string)this.GetValue(ChamberTypeProperty); } set { this.SetValue(ChamberTypeProperty, value); } } } }