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