12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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
- {
- /// <summary>
- /// Wafer.xaml 的交互逻辑
- /// </summary>
- 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));
- }
- }
|