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; using MECF.Framework.UI.Client.ClientBase; namespace FurnaceUI.Controls.Parts { /// /// Wafer.xaml 的交互逻辑 /// public partial class Wafer : UserControl { public Wafer() { InitializeComponent(); } public WaferInfo WaferItem { get { return (WaferInfo)GetValue(WaferItemProperty); } set { SetValue(WaferItemProperty, value); } } // Using a DependencyProperty as the backing store for WaferItem. This enables animation, styling, binding, etc... public static readonly DependencyProperty WaferItemProperty = DependencyProperty.Register("WaferItem", typeof(WaferInfo), typeof(Wafer), new PropertyMetadata(null)); } }