WaferOverviewPanel.xaml.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Navigation;
  14. using System.Windows.Shapes;
  15. namespace CyberX8_Themes.UserControls
  16. {
  17. /// <summary>
  18. /// WaferOverviewPanel.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class WaferOverviewPanel : UserControl
  21. {
  22. public WaferOverviewPanel()
  23. {
  24. InitializeComponent();
  25. }
  26. #region 属性
  27. public static readonly DependencyProperty WaferIDProperty = DependencyProperty.Register(
  28. "WaferIDValue", typeof(string), typeof(WaferOverviewPanel), new FrameworkPropertyMetadata("", FrameworkPropertyMetadataOptions.AffectsRender));
  29. /// <summary>
  30. /// WaferID
  31. /// </summary>
  32. public string WaferIDValue
  33. {
  34. get
  35. {
  36. return (string)this.GetValue(WaferIDProperty);
  37. }
  38. set
  39. {
  40. this.SetValue(WaferIDProperty, value);
  41. }
  42. }
  43. public static readonly DependencyProperty SeqRecipeProperty = DependencyProperty.Register(
  44. "SeqRecipeValue", typeof(string), typeof(WaferOverviewPanel), new FrameworkPropertyMetadata("", FrameworkPropertyMetadataOptions.AffectsRender));
  45. /// <summary>
  46. /// SeqRecipe
  47. /// </summary>
  48. public string SeqRecipeValue
  49. {
  50. get
  51. {
  52. return (string)this.GetValue(SeqRecipeProperty);
  53. }
  54. set
  55. {
  56. this.SetValue(SeqRecipeProperty, value);
  57. }
  58. }
  59. #endregion
  60. }
  61. }