WaferCtrl.xaml.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. 
  2. using OpenSEMI.ClientBase;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. using System.Windows.Controls;
  10. using System.Windows.Data;
  11. using System.Windows.Documents;
  12. using System.Windows.Input;
  13. using System.Windows.Media;
  14. using System.Windows.Media.Imaging;
  15. using System.Windows.Navigation;
  16. using System.Windows.Shapes;
  17. namespace Venus_Themes.UserControls
  18. {
  19. /// <summary>
  20. /// WaferCtrl.xaml 的交互逻辑
  21. /// </summary>
  22. public partial class WaferCtrl : UserControl
  23. {
  24. public WaferCtrl()
  25. {
  26. InitializeComponent();
  27. }
  28. public WaferInfo WaferData
  29. {
  30. get { return (WaferInfo)GetValue(WaferDataProperty); }
  31. set { SetValue(WaferDataProperty, value); }
  32. }
  33. public static readonly DependencyProperty WaferDataProperty =
  34. DependencyProperty.Register("WaferData", typeof(WaferInfo), typeof(WaferCtrl), new PropertyMetadata(null));
  35. }
  36. }