| 123456789101112131415161718192021222324 | 
							- using System.Windows;
 
- using System.Windows.Controls;
 
- namespace MECF.Framework.UI.Client.CenterViews.Operations.WaferAssociation
 
- {
 
-     /// <summary>
 
-     /// Interaction logic for WaferAssociationUnit.xaml
 
-     /// </summary>
 
-     public partial class WaferAssociationUnit : UserControl
 
-     {
 
-         public WaferAssociationUnit()
 
-         {
 
-             InitializeComponent();
 
-         }
 
-         public WaferAssociationInfo WAInfo
 
-         {
 
-             get { return (WaferAssociationInfo)GetValue(WAInfoProperty); }
 
-             set { SetValue(WAInfoProperty, value); }
 
-         }
 
-         public static readonly DependencyProperty WAInfoProperty = DependencyProperty.Register("WAInfo", typeof(WaferAssociationInfo), typeof(WaferAssociationUnit), new UIPropertyMetadata(null));
 
-     }
 
- }
 
 
  |