| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | 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 CyberX8_Themes.UserControls{    /// <summary>    /// SRD2.xaml 的交互逻辑    /// </summary>    public partial class SRD2 : UserControl    {        public SRD2()        {            InitializeComponent();        }        public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register("RotateTransformValue", typeof(int), typeof(SRD2));        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(SRD2), new PropertyMetadata("SRD2"));        public string CassetteName        {            get { return this.GetValue(CassetteNameProperty).ToString(); }            set { this.SetValue(CassetteNameProperty, value); }        }        public static readonly DependencyProperty SRD2VisibilityProperty = DependencyProperty.Register("SRD2Visibility", typeof(Visibility), typeof(SRD2));        public Visibility SRD2Visibility        {            get => (Visibility)GetValue(SRD2VisibilityProperty);            set => SetValue(SRD2VisibilityProperty, value);        }        public static readonly DependencyProperty SRD2WaferProperty = DependencyProperty.Register("SRD2Wafer", typeof(WaferInfo), typeof(SRD2));        public WaferInfo SRD2Wafer        {            get => (WaferInfo)GetValue(SRD2WaferProperty);            set => SetValue(SRD2WaferProperty, value);        }    }}
 |