| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 | 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;using CyberX8_Core;using CyberX8_Themes.Unity;namespace CyberX8_Themes.UserControls{    /// <summary>    /// DummyCassette.xaml 的交互逻辑    /// </summary>    public partial class SRD : UserControl    {        public SRD()        {            InitializeComponent();        }        public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register("RotateTransformValue", typeof(int), typeof(SRD));        public int RotateTransformValue        {            get { return (int)this.GetValue(RotateTransformValueProperty); }            set { this.SetValue(RotateTransformValueProperty, value); }        }        public static readonly DependencyProperty CassetteNameProperty = DependencyProperty.Register("CassetteName", typeof(string), typeof(SRD),new PropertyMetadata("SRD"));        public string CassetteName        {            get { return this.GetValue(CassetteNameProperty).ToString(); }            set { this.SetValue(CassetteNameProperty, value); }        }        public static readonly DependencyProperty SRDVisibilityProperty = DependencyProperty.Register("SRDVisibility", typeof(Visibility), typeof(SRD));        public Visibility SRDVisibility        {            get => (Visibility)GetValue(SRDVisibilityProperty);            set => SetValue(SRDVisibilityProperty, value);        }        public static readonly DependencyProperty SRD1WaferProperty = DependencyProperty.Register("SRD1Wafer", typeof(WaferInfo), typeof(SRD));        public WaferInfo SRD1Wafer        {            get => (WaferInfo)GetValue(SRD1WaferProperty);            set => SetValue(SRD1WaferProperty, value);        }        public static readonly DependencyProperty SRD2WaferProperty = DependencyProperty.Register("SRD2Wafer", typeof(WaferInfo), typeof(SRD));        public WaferInfo SRD2Wafer        {            get => (WaferInfo)GetValue(SRD2WaferProperty);            set => SetValue(SRD2WaferProperty, value);        }    }}
 |