Sic02-new/SicUI/Controls/WaferCtrl.xaml.cs

28 lines
750 B
C#
Raw Normal View History

2023-07-25 14:28:00 +08:00
using System.Windows;
using System.Windows.Controls;
using MECF.Framework.UI.Client.ClientBase;
using OpenSEMI.ClientBase;
namespace SicUI.Controls
{
/// <summary>
/// WaferCtrl.xaml 的交互逻辑
/// </summary>
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));
}
}