NewWaferAssociationUnit.xaml.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. using MECF.Framework.Common.DataCenter;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using Venus_MainPages.Unity;
  9. namespace Venus_MainPages.Views
  10. {
  11. /// <summary>
  12. /// WaferAssociationUnit.xaml 的交互逻辑
  13. /// </summary>
  14. public partial class NewWaferAssociationUnit : UserControl
  15. {
  16. public NewWaferAssociationUnit()
  17. {
  18. InitializeComponent();
  19. }
  20. public WaferAssociationInfo WAInfo
  21. {
  22. get { return (WaferAssociationInfo)GetValue(WAInfoProperty); }
  23. set { SetValue(WAInfoProperty, value); }
  24. }
  25. public static readonly DependencyProperty WAInfoProperty = DependencyProperty.Register("WAInfo", typeof(WaferAssociationInfo), typeof(NewWaferAssociationUnit));
  26. public string SequenceName
  27. {
  28. get { return (string)GetValue(SequenceNameProperty); }
  29. set { SetValue(SequenceNameProperty, value); }
  30. }
  31. public static readonly DependencyProperty SequenceNameProperty = DependencyProperty.Register("SequenceName", typeof(string), typeof(NewWaferAssociationUnit));
  32. public int SelectedIndex
  33. {
  34. get { return (int)GetValue(SelectedIndexProperty); }
  35. set { SetValue(SelectedIndexProperty, value); }
  36. }
  37. public static readonly DependencyProperty SelectedIndexProperty = DependencyProperty.Register("SelectedIndex", typeof(int), typeof(NewWaferAssociationUnit),new PropertyMetadata(1));
  38. public bool ButtonIsEnable
  39. {
  40. get { return (bool)GetValue(ButtonIsEnableProperty); }
  41. set { SetValue(ButtonIsEnableProperty, value); }
  42. }
  43. public static readonly DependencyProperty ButtonIsEnableProperty = DependencyProperty.Register("ButtonIsEnable", typeof(bool), typeof(NewWaferAssociationUnit), new PropertyMetadata(true));
  44. private void cb_DropDownOpened(object sender, EventArgs e)
  45. {
  46. cb.ItemsSource = GetFilesNames(System.IO.Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", "Sequence")).ToList();
  47. }
  48. private void cb_SelectionChanged(object sender, SelectionChangedEventArgs e)
  49. {
  50. WAInfo.SequenceName = cb.SelectedValue.ToString();
  51. }
  52. private void preComboBox_DropDownOpened(object sender, EventArgs e)
  53. {
  54. List<string> cleanRecipes=new List<string>();
  55. string installModules = (string)QueryDataClient.Instance.Service.GetConfig("System.InstalledModules");
  56. if (installModules.Contains("PMA"))
  57. {
  58. cleanRecipes.AddRange(CommonFunction.GetFilesNames(System.IO.Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", "PMA","Clean")).ToList());
  59. }
  60. if (installModules.Contains("PMB"))
  61. {
  62. cleanRecipes.AddRange(CommonFunction.GetFilesNames(System.IO.Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", "PMB", "Clean")).ToList());
  63. }
  64. if (installModules.Contains("PMC"))
  65. {
  66. cleanRecipes.AddRange(CommonFunction.GetFilesNames(System.IO.Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", "PMC", "Clean")).ToList());
  67. }
  68. if (installModules.Contains("PMD"))
  69. {
  70. cleanRecipes.AddRange(CommonFunction.GetFilesNames(System.IO.Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", "PMD", "Clean")).ToList());
  71. }
  72. cleanRecipes.Add("");
  73. preComboBox.ItemsSource = cleanRecipes.Distinct();
  74. }
  75. private void preComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
  76. {
  77. WAInfo.PreCleanRecipeName= preComboBox.SelectedValue.ToString();
  78. }
  79. private void postComboBox_DropDownOpened(object sender, EventArgs e)
  80. {
  81. List<string> cleanRecipes = new List<string>();
  82. string installModules = (string)QueryDataClient.Instance.Service.GetConfig("System.InstalledModules");
  83. if (installModules.Contains("PMA"))
  84. {
  85. cleanRecipes.AddRange(CommonFunction.GetFilesNames(System.IO.Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", "PMA", "Clean")).ToList());
  86. }
  87. if (installModules.Contains("PMB"))
  88. {
  89. cleanRecipes.AddRange(CommonFunction.GetFilesNames(System.IO.Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", "PMB", "Clean")).ToList());
  90. }
  91. if (installModules.Contains("PMC"))
  92. {
  93. cleanRecipes.AddRange(CommonFunction.GetFilesNames(System.IO.Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", "PMC", "Clean")).ToList());
  94. }
  95. if (installModules.Contains("PMD"))
  96. {
  97. cleanRecipes.AddRange(CommonFunction.GetFilesNames(System.IO.Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", "PMD", "Clean")).ToList());
  98. }
  99. cleanRecipes.Add("");
  100. postComboBox.ItemsSource = cleanRecipes.Distinct();
  101. }
  102. private void postComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
  103. {
  104. WAInfo.PostCleanRecipeName = postComboBox.SelectedValue.ToString();
  105. }
  106. private IEnumerable<string> GetFilesNames(string path)
  107. {
  108. if (Directory.Exists(path))
  109. {
  110. return Directory.GetFiles(path, "*.seq")
  111. .Select(System.IO.Path.GetFileNameWithoutExtension);
  112. }
  113. else
  114. {
  115. return new List<string>();
  116. }
  117. }
  118. private void SelectAllButton_Click(object sender, RoutedEventArgs e)
  119. {
  120. SelectedIndex = 0;
  121. }
  122. private void UnSelectAllButton_Click(object sender, RoutedEventArgs e)
  123. {
  124. SelectedIndex = 1;
  125. }
  126. }
  127. }