| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | using Aitex.Core.Common;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;namespace PunkHPX8_Themes.UserControls{    /// <summary>    /// SRD1.xaml 的交互逻辑    /// </summary>    public partial class SRD1 : UserControl    {        public SRD1()        {            InitializeComponent();        }        public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register("RotateTransformValue", typeof(int), typeof(SRD1));        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(SRD1), new PropertyMetadata("SRD1"));        public string CassetteName        {            get { return this.GetValue(CassetteNameProperty).ToString(); }            set { this.SetValue(CassetteNameProperty, value); }        }        public static readonly DependencyProperty SRD1VisibilityProperty = DependencyProperty.Register("SRD1Visibility", typeof(Visibility), typeof(SRD1));        public Visibility SRD1Visibility        {            get => (Visibility)GetValue(SRD1VisibilityProperty);            set => SetValue(SRD1VisibilityProperty, value);        }        public static readonly DependencyProperty SRD1WaferProperty = DependencyProperty.Register("SRD1Wafer", typeof(WaferInfo), typeof(SRD1));        public WaferInfo SRD1Wafer        {            get => (WaferInfo)GetValue(SRD1WaferProperty);            set => SetValue(SRD1WaferProperty, value);        }    }}
 |