using OpenSEMI.ClientBase; using System; using System.Collections.Generic; using System.Windows; using System.Windows.Controls; using System.Windows.Media.Animation; using System.Windows.Shapes; namespace PunkHPX8_Themes.UserControls { /// /// DualChamber.xaml 的交互逻辑 /// public partial class DualChamber : UserControl { public DualChamber() { InitializeComponent(); } public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register( "RotateTransformValue", typeof(int), typeof(DualChamber)); public int RotateTransformValue { get { return (int)GetValue(RotateTransformValueProperty); } set { SetValue(RotateTransformValueProperty, value); } } public static readonly DependencyProperty RobotWafer1Property = DependencyProperty.Register( "RobotWafer1", typeof(WaferInfo), typeof(DualChamber)); public WaferInfo RobotWafer1 { get => (WaferInfo)GetValue(RobotWafer1Property); set => SetValue(RobotWafer1Property, value); } public static readonly DependencyProperty RobotWafer2Property = DependencyProperty.Register( "RobotWafer2", typeof(WaferInfo), typeof(DualChamber)); public WaferInfo RobotWafer2 { get => (WaferInfo)GetValue(RobotWafer2Property); set => SetValue(RobotWafer2Property, value); } public static readonly DependencyProperty ModuleNameProperty = DependencyProperty.Register( "ModuleName", typeof(string), typeof(DualChamber)); public string ModuleName { get { return (string)GetValue(ModuleNameProperty); } set { SetValue(ModuleNameProperty, value); } } } }