using System.Windows; using System.Windows.Controls; using MECF.Framework.UI.Client.ClientBase; using OpenSEMI.ClientBase; namespace SicUI.Controls { /// /// WaferCtrl.xaml 的交互逻辑 /// public partial class WaferCtrl : UserControl { public WaferCtrl() { InitializeComponent(); } public WaferInfo WaferData { get { return (WaferInfo)GetValue(WaferDataProperty); } set { SetValue(WaferDataProperty, value); } } public static readonly DependencyProperty WaferDataProperty = DependencyProperty.Register("WaferData", typeof(WaferInfo), typeof(WaferCtrl), new PropertyMetadata(null)); } }