RecipeViewModel.cs 73 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595
  1. using Aitex.Core.Common.DeviceData;
  2. using Aitex.Core.RT.IOCore;
  3. using Aitex.Core.RT.Log;
  4. using Aitex.Core.UI.View.Common;
  5. using MECF.Framework.Common.DataCenter;
  6. using MECF.Framework.Common.OperationCenter;
  7. using Microsoft.VisualBasic;
  8. using Newtonsoft.Json;
  9. using Prism.Commands;
  10. using Prism.Mvvm;
  11. using System;
  12. using System.Collections.Generic;
  13. using System.IO;
  14. using System.Linq;
  15. using System.Reflection;
  16. using System.Text;
  17. using System.Threading;
  18. using System.Windows;
  19. using System.Windows.Controls;
  20. using System.Windows.Data;
  21. using System.Windows.Input;
  22. using System.Windows.Media;
  23. using System.Xml;
  24. using Venus_Core;
  25. using Venus_Core.Attributes;
  26. using Venus_MainPages.PMs;
  27. using Venus_MainPages.Unity;
  28. using Venus_MainPages.Views;
  29. using Venus_Themes.UserControls;
  30. using Venus_Unity;
  31. using WPF.Themes.UserControls;
  32. using RecipeStep = Venus_Core.RecipeStep;
  33. namespace Venus_MainPages.ViewModels
  34. {
  35. public enum EPDType
  36. {
  37. Socket,
  38. WCF,
  39. None
  40. }
  41. internal class RecipeViewModel : BindableBase
  42. {
  43. #region 私有字段
  44. public string ModuleName = "PMA";
  45. private string m_CurrentRecipeName;
  46. private UiRecipeManager m_uiRecipeManager = new UiRecipeManager();
  47. private RecipeView recipeView;
  48. private TreeView treeViewRcpList;
  49. private Recipe m_currentRecipe;
  50. private string m_recipeType;
  51. private bool firstLoad = true;
  52. private WrapPanel headWrapPanel;
  53. private StackPanel bodyStackPanel;
  54. private List<SolidColorBrush> solidColorBrushes = new List<SolidColorBrush>()
  55. {
  56. //new SolidColorBrush(Colors.Cyan),
  57. //new SolidColorBrush(Colors.Lime),
  58. new SolidColorBrush(Colors.Coral),
  59. new SolidColorBrush(Colors.Cyan),
  60. new SolidColorBrush(Colors.Honeydew)
  61. };
  62. private Grid currentRecipeGrid;
  63. private int copyIndex = -1;
  64. private List<string> EPDCfgList = new List<string>();
  65. private EPDType currentEPDType = EPDType.None;
  66. private JetChamber currentChamber;
  67. private bool isInstalledEPD;
  68. private bool m_IsFrozen;
  69. private bool m_PMAIsInstalled;
  70. private bool m_PMBIsInstalled;
  71. private bool m_PMCIsInstalled;
  72. private bool m_PMDIsInstalled;
  73. private List<string> moduleList = new List<string>();
  74. TreeViewFileItem selectedItem;
  75. private string typeFolder = "";
  76. private bool m_HeadExpand=true;
  77. #endregion
  78. #region 属性
  79. public bool HeadExpand
  80. {
  81. get { return m_HeadExpand; }
  82. set { SetProperty(ref m_HeadExpand, value); }
  83. }
  84. public string CurrentRecipeName
  85. {
  86. get { return m_CurrentRecipeName; }
  87. set { SetProperty(ref m_CurrentRecipeName, value); }
  88. }
  89. public Recipe CurrentRecipe
  90. {
  91. get { return m_currentRecipe; }
  92. set
  93. {
  94. m_currentRecipe = value;
  95. RecipeType = m_currentRecipe?.Header?.Type.ToString();
  96. }
  97. }
  98. public string RecipeType
  99. {
  100. get { return m_recipeType; }
  101. set { SetProperty(ref m_recipeType, value); }
  102. }
  103. public bool IsFrozen
  104. {
  105. get { return m_IsFrozen; }
  106. set { SetProperty(ref m_IsFrozen, value); }
  107. }
  108. public bool PMAIsInstalled
  109. {
  110. get { return m_PMAIsInstalled; }
  111. set { SetProperty(ref m_PMAIsInstalled, value); }
  112. }
  113. public bool PMBIsInstalled
  114. {
  115. get { return m_PMBIsInstalled; }
  116. set { SetProperty(ref m_PMBIsInstalled, value); }
  117. }
  118. public bool PMCIsInstalled
  119. {
  120. get { return m_PMCIsInstalled; }
  121. set { SetProperty(ref m_PMCIsInstalled, value); }
  122. }
  123. public bool PMDIsInstalled
  124. {
  125. get { return m_PMDIsInstalled; }
  126. set { SetProperty(ref m_PMDIsInstalled, value); }
  127. }
  128. #endregion
  129. #region 命令
  130. private DelegateCommand<Object> _MouseRightButtonDownCommand;
  131. public DelegateCommand<Object> MouseRightButtonDownCommand =>
  132. _MouseRightButtonDownCommand ?? (_MouseRightButtonDownCommand = new DelegateCommand<Object>(OnMouseRightButtonDown));
  133. private DelegateCommand<Object> _LoadedCommand;
  134. public DelegateCommand<Object> LoadedCommand =>
  135. _LoadedCommand ?? (_LoadedCommand = new DelegateCommand<Object>(OnLoaded));
  136. private DelegateCommand _SaveRecipeCommand;
  137. public DelegateCommand SaveRecipeCommand =>
  138. _SaveRecipeCommand ?? (_SaveRecipeCommand = new DelegateCommand(OnSaveRecipe));
  139. private DelegateCommand<object> _SaveToRecipeCommand;
  140. public DelegateCommand<object> SaveToRecipeCommand =>
  141. _SaveToRecipeCommand ?? (_SaveToRecipeCommand = new DelegateCommand<object>(OnSaveToRecipe));
  142. private DelegateCommand _AddStepCommand;
  143. public DelegateCommand AddStepCommand =>
  144. _AddStepCommand ?? (_AddStepCommand = new DelegateCommand(OnAddStep));
  145. private DelegateCommand _DeleteStepCommand;
  146. public DelegateCommand DeleteStepCommand =>
  147. _DeleteStepCommand ?? (_DeleteStepCommand = new DelegateCommand(OnDeleteStep));
  148. private DelegateCommand _RefreshCommand;
  149. public DelegateCommand RefreshCommand =>
  150. _RefreshCommand ?? (_RefreshCommand = new DelegateCommand(OnRefresh));
  151. private DelegateCommand _ToleranceCommand;
  152. public DelegateCommand ToleranceCommand =>
  153. _ToleranceCommand ?? (_ToleranceCommand = new DelegateCommand(OnTolerance));
  154. private DelegateCommand _ExpandCommand;
  155. public DelegateCommand ExpandCommand =>
  156. _ExpandCommand ?? (_ExpandCommand = new DelegateCommand(OnExpand));
  157. private DelegateCommand _UnloadCommand;
  158. public DelegateCommand UnloadCommand =>
  159. _UnloadCommand ?? (_UnloadCommand = new DelegateCommand(OnUnload));
  160. #endregion
  161. #region 命令方法
  162. private void OnAddStep()
  163. {
  164. if (CurrentRecipe != null)
  165. {
  166. var index = currentRecipeGrid.ColumnDefinitions.Count;
  167. RecipeStep recipeStep;
  168. if (copyIndex == -1)
  169. {
  170. recipeStep = new RecipeStep();
  171. recipeStep.LstUnit = RecipeUnity.GetAllUnits(currentChamber, CurrentRecipe.Header.Type);
  172. CurrentRecipe.Steps.Insert(index - 1, recipeStep);
  173. }
  174. else
  175. {
  176. var t = JsonConvert.SerializeObject(CurrentRecipe);
  177. recipeStep = Recipe.Load(t).Steps[copyIndex - 1];
  178. CurrentRecipe.Steps.Insert(index - 1, recipeStep);
  179. }
  180. RecipeStepToGridColumn(recipeStep, currentRecipeGrid, index, true);
  181. for (int i = 1; i <= CurrentRecipe.Steps.Count; i++)
  182. {
  183. CurrentRecipe.Steps[i - 1].StepNo = i;
  184. }
  185. }
  186. }
  187. private void OnDeleteStep()
  188. {
  189. if (CurrentRecipe != null)
  190. {
  191. OnDeleteStep(CurrentRecipe.Steps.Count - 1);
  192. }
  193. }
  194. private void OnSaveRecipe()
  195. {
  196. var PMCurrentState = (PMState)Enum.Parse(typeof(PMState), QueryDataClient.Instance.Service.GetData($"{ModuleName}.FsmState").ToString());
  197. var SystemCurrentState = Convert.ToBoolean( QueryDataClient.Instance.Service.GetData($"System.IsAutoMode"));
  198. //if (PMCurrentState == PMState.Clean || PMCurrentState == PMState.Processing)
  199. //{
  200. // WPFMessageBox.ShowError($"{ModuleName} is Processing,can not edit recipe {CurrentRecipeName}");
  201. // return;
  202. //}
  203. //QueryDataClient.Instance.Service.GetData($"Scheduler.InUsingRecipe");
  204. var inUseRecipe= QueryDataClient.Instance.Service.GetData($"Scheduler.InUsingRecipe");
  205. if (inUseRecipe != null)
  206. {
  207. if ((inUseRecipe as List<string>).Contains($"{ModuleName}.{CurrentRecipe.Header.Type}.{CurrentRecipeName}"))
  208. {
  209. WPFMessageBox.ShowError($"{CurrentRecipeName} Recipe is In Use,can not edit");
  210. return;
  211. }
  212. }
  213. CurrentRecipe.Header.EditTime = DateTime.Now.ToString();
  214. //SaveRecipe(CurrentRecipeName, RecipeUnity.RecipeToString(CurrentRecipe));
  215. var newrecipePath = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, typeFolder, CurrentRecipeName + ".rcp");
  216. FileInfo fi = new FileInfo(newrecipePath);
  217. var di = fi.Directory;
  218. if (!di.Exists)
  219. {
  220. di.Create();
  221. }
  222. //File.WriteAllText(newrecipePath, RecipeUnity.RecipeToString(CurrentRecipe),Encoding.UTF8);
  223. SaveAsRecipe2(CurrentRecipe.Header.Name, CurrentRecipe.Header.Type.ToString(), RecipeUnity.RecipeToString(CurrentRecipe));
  224. LoadHeadWrapPanel(headWrapPanel, CurrentRecipe);
  225. }
  226. private void OnSaveToRecipe(object obj)
  227. {
  228. if (CurrentRecipe == null)
  229. {
  230. return;
  231. }
  232. string moduleName = "";
  233. switch (obj.ToString())
  234. {
  235. case "0":
  236. moduleName = "PMA";
  237. break;
  238. case "1":
  239. moduleName = "PMB";
  240. break;
  241. case "2":
  242. moduleName = "PMC";
  243. break;
  244. case "3":
  245. moduleName = "PMD";
  246. break;
  247. case "4":
  248. moduleName = "ALL";
  249. break;
  250. }
  251. if (moduleName == "")
  252. {
  253. return;
  254. }
  255. if (moduleName == "ALL")
  256. {
  257. var newName = Interaction.InputBox(" ", $"Save Recipe To All", CurrentRecipeName, -1, -1);
  258. foreach (var x in moduleList)
  259. {
  260. if (newName != "")
  261. {
  262. OnSaveRecipe();
  263. var targetChamber = (JetChamber)Enum.Parse(typeof(JetChamber), QueryDataClient.Instance.Service.GetConfig($"{x}.ChamberType").ToString());
  264. if (currentChamber != targetChamber || x == ModuleName)
  265. {
  266. continue;
  267. }
  268. var newRecipe = CurrentRecipe;
  269. newRecipe.Header.Name = newName;
  270. newRecipe.Header.CreateTime = DateTime.Now.ToString();
  271. var newrecipePath = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", x, typeFolder, newName + ".rcp");
  272. FileInfo fi = new FileInfo(newrecipePath);
  273. var di = fi.Directory;
  274. if (!di.Exists)
  275. {
  276. di.Create();
  277. }
  278. File.WriteAllText(newrecipePath, RecipeUnity.RecipeToString(newRecipe));
  279. UpdateRecipeFileList();
  280. }
  281. }
  282. }
  283. else
  284. {
  285. var targetChamber = (JetChamber)Enum.Parse(typeof(JetChamber), QueryDataClient.Instance.Service.GetConfig($"{moduleName}.ChamberType").ToString());
  286. if (currentChamber != targetChamber)
  287. {
  288. WPFMessageBox.ShowError($"Recipe can not from {currentChamber.ToString()} copy to {targetChamber.ToString()}");
  289. return;
  290. }
  291. var newName = Interaction.InputBox(" ", $"Save Recipe To {moduleName}", CurrentRecipeName, -1, -1);
  292. if (newName != "")
  293. {
  294. OnSaveRecipe();
  295. var newRecipe = CurrentRecipe;
  296. newRecipe.Header.Name = newName;
  297. newRecipe.Header.CreateTime = DateTime.Now.ToString();
  298. var newrecipePath = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", moduleName, typeFolder, newName + ".rcp");
  299. FileInfo fi = new FileInfo(newrecipePath);
  300. var di = fi.Directory;
  301. if (!di.Exists)
  302. {
  303. di.Create();
  304. }
  305. File.WriteAllText(newrecipePath, RecipeUnity.RecipeToString(newRecipe));
  306. UpdateRecipeFileList();
  307. }
  308. }
  309. }
  310. private void OnLoaded(Object myrecipeView)
  311. {
  312. isInstalledEPD = bool.Parse(QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.EPD.IsEnabled").ToString());
  313. if (firstLoad == true)
  314. {
  315. currentChamber = (JetChamber)Enum.Parse(typeof(JetChamber), QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.ChamberType").ToString());
  316. firstLoad = false;
  317. recipeView = myrecipeView as RecipeView;
  318. treeViewRcpList = recipeView.treeViewRcpList;
  319. headWrapPanel = recipeView.headWrapPanel;
  320. bodyStackPanel = recipeView.bodyStackPanel;
  321. UpdateRecipeFileList();
  322. treeViewRcpList.SelectedItemChanged += TreeViewRcpList_SelectedItemChanged;
  323. for (int i = 0; i < 5; i++)
  324. {
  325. InvokeClient.Instance.Service.DoOperation($"{ModuleName}.EndPoint.SearchCfg");
  326. Thread.Sleep(200);
  327. currentEPDType = (EPDType)System.Convert.ToInt32(QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.EPD.EPDType"));
  328. if (currentEPDType == EPDType.Socket)
  329. {
  330. EPDCfgList = (List<string>)QueryDataClient.Instance.Service.GetData($"{ModuleName}.EPDCfgList");
  331. }
  332. if (EPDCfgList != null)
  333. {
  334. break;
  335. }
  336. }
  337. string allModules = QueryDataClient.Instance.Service.GetConfig($"System.InstalledModules").ToString();
  338. if (allModules.Contains("PMA"))
  339. {
  340. PMAIsInstalled = true;
  341. moduleList.Add("PMA");
  342. }
  343. if (allModules.Contains("PMB"))
  344. {
  345. PMBIsInstalled = true;
  346. moduleList.Add("PMB");
  347. }
  348. if (allModules.Contains("PMC"))
  349. {
  350. PMCIsInstalled = true;
  351. moduleList.Add("PMC");
  352. }
  353. if (allModules.Contains("PMD"))
  354. {
  355. PMDIsInstalled = true;
  356. moduleList.Add("PMD");
  357. }
  358. }
  359. UpdateRecipeFileList();
  360. }
  361. private void TreeViewRcpList_SelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e)
  362. {
  363. selectedItem = e.NewValue as TreeViewFileItem;
  364. if (selectedItem == null)
  365. return;
  366. try
  367. {
  368. string[] info = selectedItem.FileName.Split('\\');
  369. //string path;
  370. string xmlRecipeData = "";
  371. if (info.Length == 1)
  372. {
  373. CurrentRecipeName = info[0];
  374. typeFolder = "";
  375. string path = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, $"{CurrentRecipeName}.rcp");
  376. xmlRecipeData = m_uiRecipeManager.LoadRecipeByPath(path);
  377. }
  378. else if (info.Length == 2)
  379. {
  380. string type = info[0];
  381. typeFolder = type;
  382. CurrentRecipeName = info[1];
  383. string path = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, type, $"{CurrentRecipeName}.rcp");
  384. xmlRecipeData = m_uiRecipeManager.LoadRecipeByPath(path);
  385. }
  386. else
  387. {
  388. return;
  389. }
  390. if (xmlRecipeData == "")
  391. {
  392. treeViewRcpList.Items.Remove(selectedItem);
  393. return;
  394. }
  395. CurrentRecipe = Recipe.Load(xmlRecipeData);
  396. LoadHeadWrapPanel(headWrapPanel, CurrentRecipe);
  397. LoadRecipe(CurrentRecipe);
  398. }
  399. catch (Exception ex)
  400. {
  401. MessageBox.Show(string.Format(Application.Current.Resources["GlobalLableTitleRecipeEditor"].ToString(), ex.Message), Application.Current.Resources["GlobalLableTitleRecipeEditor"].ToString(), MessageBoxButton.OK, MessageBoxImage.Error);
  402. }
  403. e.Handled = true;
  404. }
  405. public bool SaveRecipe(string recipeName, string recipeContent)
  406. {
  407. return m_uiRecipeManager.SaveRecipe(ModuleName, recipeName, recipeContent);
  408. }
  409. private void OnMouseRightButtonDown(Object treeView)
  410. {
  411. //treeViewRcpList = treeView as TreeView;
  412. treeViewRcpList.ContextMenu = new ContextMenu() { Background = new SolidColorBrush(Colors.AliceBlue) };
  413. MenuItem menuItem = new MenuItem();
  414. menuItem = new MenuItem();
  415. menuItem.Tag = "\\";
  416. menuItem.Click += new RoutedEventHandler(menuItem_MouseClick_CreateRecipe);
  417. menuItem.Header = "New Recipe";
  418. treeViewRcpList.ContextMenu.Items.Add(menuItem);
  419. menuItem = new MenuItem();
  420. menuItem.Tag = "\\";
  421. menuItem.Click += new RoutedEventHandler(menuItem_MouseClick_DeleteRecipe);
  422. menuItem.Header = "Delete Recipe";
  423. treeViewRcpList.ContextMenu.Items.Add(menuItem);
  424. menuItem = new MenuItem();
  425. menuItem.Tag = "\\";
  426. menuItem.Click += new RoutedEventHandler(menuItem_MouseClick_SaveAsRecipe);
  427. menuItem.Header = "Save As Recipe";
  428. treeViewRcpList.ContextMenu.Items.Add(menuItem);
  429. menuItem = new MenuItem();
  430. menuItem.Tag = "\\";
  431. menuItem.Click += new RoutedEventHandler(menuItem_MouseClick_RenameRecipe);
  432. menuItem.Header = "Rename";
  433. treeViewRcpList.ContextMenu.Items.Add(menuItem);
  434. treeViewRcpList.ContextMenu.Visibility = Visibility.Visible;
  435. }
  436. private void menuItem_MouseClick_CreateRecipe(object sender, RoutedEventArgs e)
  437. {
  438. MenuItem mit = sender as MenuItem;
  439. string folderName = mit.Tag as string;
  440. PerformCreateRecipe(folderName);
  441. }
  442. private void PerformCreateRecipe(string folderName)
  443. {
  444. try
  445. {
  446. bool hasHV = false;
  447. if (currentChamber == JetChamber.VenusSE || currentChamber == JetChamber.VenusDE)
  448. {
  449. hasHV = true;
  450. }
  451. RecipeNameInputDlg dlg = new RecipeNameInputDlg(Application.Current.Resources["GlobalLableMsgInputRecipeName"].ToString(), hasHV)
  452. {
  453. Owner = Application.Current.MainWindow
  454. };
  455. if (dlg.ShowDialog() == true)
  456. {
  457. var recipeName = folderName + "\\" + dlg.InputText;
  458. RecipeType type = (RecipeType)Enum.Parse(typeof(RecipeType), dlg.SelectedType);
  459. string newRecipe = RecipeUnity.CreateRecipe(currentChamber, type, dlg.InputText);
  460. //string recipeContent = m_uiRecipeManager.GetRecipeTemplate(ModuleName);
  461. //m_uiRecipeManager.SaveAsRecipe(ModuleName, recipeName, m_uiRecipeManager.LoadRecipe("system",folderName));
  462. if (SaveAsRecipe2(recipeName, type.ToString(), newRecipe))
  463. {
  464. UpdateRecipeFileList();
  465. //SelectRecipe(recipeName);
  466. //treeViewRcpList.Items.Add(new TreeViewFileItem(dlg.InputText));
  467. }
  468. else
  469. {
  470. WPFMessageBox.ShowError("Error");
  471. }
  472. }
  473. }
  474. catch (Exception ex)
  475. {
  476. LOG.WriteExeption(ex);
  477. MessageBox.Show(string.Format(Application.Current.Resources["GlobalLableMsgRecipeCreateException"].ToString(), ex.Message), Application.Current.Resources["GlobalLableTitleRecipeEditor"].ToString(), MessageBoxButton.OK, MessageBoxImage.Error);
  478. }
  479. }
  480. private void menuItem_MouseClick_DeleteRecipe(object sender, RoutedEventArgs e)
  481. {
  482. if (CurrentRecipe == null)
  483. {
  484. return;
  485. }
  486. if (WPFMessageBox.ShowQuestion($"Delete {typeFolder}Recipe {CurrentRecipeName}?", "删除后无法恢复!!!") == MessageBoxResult.Yes)
  487. {
  488. MenuItem mit = sender as MenuItem;
  489. //string recipename = mit.Header.ToString();
  490. string path = typeFolder == "" ? CurrentRecipeName : $"{typeFolder}\\{CurrentRecipeName}";
  491. m_uiRecipeManager.DeleteRecipe(ModuleName, path);
  492. //PerformCreateRecipe(folderName);
  493. //treeViewRcpList.Items.Remove(selectedItem);
  494. UpdateRecipeFileList();
  495. }
  496. }
  497. private void menuItem_MouseClick_SaveAsRecipe(object sender, RoutedEventArgs e)
  498. {
  499. if (CurrentRecipe == null)
  500. {
  501. return;
  502. }
  503. var newName = Interaction.InputBox(" ", "Save As Recipe", CurrentRecipeName, -1, -1);
  504. if (newName != CurrentRecipeName && newName != "")
  505. {
  506. var newRecipe = CurrentRecipe;
  507. newRecipe.Header.Name = newName;
  508. newRecipe.Header.CreateTime = DateTime.Now.ToString();
  509. var newrecipePath = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, typeFolder, newName + ".rcp");
  510. File.WriteAllText(newrecipePath, RecipeUnity.RecipeToString(newRecipe));
  511. UpdateRecipeFileList();
  512. CurrentRecipeName = newName;
  513. LoadHeadWrapPanel(headWrapPanel, CurrentRecipe);
  514. LoadRecipe(CurrentRecipe);
  515. }
  516. }
  517. private void menuItem_MouseClick_RenameRecipe(object sender, RoutedEventArgs e)
  518. {
  519. if (CurrentRecipe == null)
  520. {
  521. return;
  522. }
  523. var newName = Interaction.InputBox(" ", "Rename Recipe", CurrentRecipeName, -1, -1);
  524. if (newName != CurrentRecipeName && newName != "")
  525. {
  526. var newRecipe = CurrentRecipe;
  527. newRecipe.Header.Name = newName;
  528. newRecipe.Header.CreateTime = DateTime.Now.ToString();
  529. var oldrecipePath = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, typeFolder, CurrentRecipeName + ".rcp");
  530. var newrecipePath = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, typeFolder, newName + ".rcp");
  531. File.Delete(oldrecipePath);
  532. File.WriteAllText(newrecipePath, RecipeUnity.RecipeToString(newRecipe));
  533. UpdateRecipeFileList();
  534. }
  535. }
  536. public bool SaveAsRecipe(string recipeName, string recipeContent)
  537. {
  538. return m_uiRecipeManager.SaveAsRecipe(ModuleName, recipeName, recipeContent);
  539. }
  540. public bool SaveAsRecipe2(string recipeName, string type, string recipeContent)
  541. {
  542. return m_uiRecipeManager.SaveAsRecipe2(ModuleName, type, recipeName, recipeContent);
  543. }
  544. public string GetXmlRecipeList()
  545. {
  546. return m_uiRecipeManager.GetXmlRecipeList(ModuleName, true) ?? "";
  547. }
  548. void CreateTreeViewItems(XmlElement curElementNode, ItemsControl itemsControl)
  549. {
  550. foreach (XmlElement ele in curElementNode.ChildNodes)
  551. {
  552. if (ele.Name == "File")
  553. {
  554. string fileName = ele.Attributes["Name"].Value;
  555. fileName = fileName.Substring(fileName.LastIndexOf('\\') + 1);
  556. TreeViewFileItem item = new TreeViewFileItem(ele.Attributes["Name"].Value);
  557. item.Tag = ele.Attributes["Name"].Value;
  558. if (!item.Tag.ToString().Contains("\\"))
  559. {
  560. continue;
  561. }
  562. itemsControl.Items.Add(item);
  563. }
  564. else if (ele.Name == "Folder")
  565. {
  566. string folderName = ele.Attributes["Name"].Value;
  567. folderName = folderName.Substring(folderName.LastIndexOf('\\') + 1);
  568. if (folderName == Venus_Core.RecipeType.Process.ToString() || folderName == Venus_Core.RecipeType.Clean.ToString() || folderName == Venus_Core.RecipeType.Chuck.ToString() || folderName == Venus_Core.RecipeType.DeChuck.ToString())
  569. {
  570. TreeViewFolderItem item = new TreeViewFolderItem(folderName);
  571. item.Tag = ele.Attributes["Name"].Value;
  572. CreateTreeViewItems(ele, item);
  573. item.IsExpanded = false;
  574. itemsControl.Items.Add(item);
  575. }
  576. }
  577. }
  578. }
  579. private IEnumerable<string> GetFilesNames(string path)
  580. {
  581. if (Directory.Exists(path))
  582. {
  583. return Directory.GetFiles(path, "*.rcp")?
  584. .Select(Path.GetFileNameWithoutExtension);
  585. }
  586. else
  587. {
  588. return new List<string>();
  589. }
  590. }
  591. private void LoadHeadWrapPanel(WrapPanel HeadWrapPanel, Recipe recipe)
  592. {
  593. HeadWrapPanel.Children.Clear();
  594. Type type = recipe.Header.GetType();
  595. foreach (var propertyInfo in type.GetProperties())
  596. {
  597. TextBlock textBlock = new TextBlock();
  598. textBlock.FontSize = 16;
  599. textBlock.Margin=new Thickness(0,20,0,0);
  600. textBlock.Width = 200;
  601. switch (propertyInfo.Name)
  602. {
  603. case "ChuckRecipe":
  604. if (currentChamber != JetChamber.VenusSE && currentChamber != JetChamber.VenusDE)
  605. {
  606. continue;
  607. }
  608. textBlock.Text = "Chuck:";
  609. break;
  610. case "DechuckRecipe":
  611. if (currentChamber != JetChamber.VenusSE && currentChamber != JetChamber.VenusDE)
  612. {
  613. continue;
  614. }
  615. textBlock.Text = "DeChuck:";
  616. break;
  617. default:
  618. object[] NameAttrs = propertyInfo.GetCustomAttributes(typeof(CustomName), true);
  619. string name;
  620. if (NameAttrs.Length > 0)
  621. {
  622. name = (NameAttrs[0] as CustomName).Name;
  623. }
  624. else
  625. {
  626. name = propertyInfo.Name;
  627. }
  628. textBlock.Text = name + ":";
  629. break;
  630. }
  631. textBlock.Margin = new Thickness(15, 0, 0, 0);
  632. textBlock.VerticalAlignment = VerticalAlignment.Center;
  633. HeadWrapPanel.Children.Add(textBlock);
  634. Binding binding = new Binding()
  635. {
  636. Source = recipe.Header, // 数据源
  637. Path = new PropertyPath(propertyInfo.Name), // 需绑定的数据源属性名
  638. Mode = BindingMode.TwoWay, // 绑定模式
  639. UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged, //触发器
  640. };
  641. var propertyTypeName = propertyInfo.PropertyType.Name;
  642. var propertyInfoName = propertyInfo.Name;
  643. Control control = new Control();
  644. switch (propertyInfoName)
  645. {
  646. case "ChamberType":
  647. control = new ComboBox();
  648. control.IsEnabled = false;
  649. control.Height = 23;
  650. control.SetBinding(ComboBox.SelectedItemProperty, binding);
  651. ItemsControlHelper.SetEnumValuesToItemsSource(control, true);
  652. break;
  653. case "Type":
  654. ComboBox cb = new ComboBox();
  655. cb.IsEnabled = false;
  656. cb.SelectionChanged += ChangeUI;
  657. control = cb;
  658. control.Height = 23;
  659. ItemsControlHelper.SetEnumValuesToItemsSource(control, true);
  660. control.SetBinding(ComboBox.SelectedItemProperty, binding);
  661. break;
  662. case "ChuckRecipe":
  663. //if (currentChamber != JetChamber.Venus)
  664. //{
  665. // continue;
  666. //}
  667. //string[] chucklist = new string[] { "" };
  668. //ArrayList arrayList = new ArrayList(chucklist.ToList());
  669. //IEnumerable<string> chlist= GetFilesNames(Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName)).ToList().Where(item => item.ToLower().Contains("chuck") && (item.ToLower().Contains("dechuck") == false));
  670. //foreach (var i in chlist)
  671. //{
  672. // arrayList.Add(i);
  673. //}
  674. //chucklist = (string[])arrayList.ToArray(typeof(string));
  675. StringBuilder stringBuilder = new StringBuilder();
  676. //输出
  677. //for (int i = 0; i < chucklist.Length; i++)
  678. //{
  679. // stringBuilder.Append(chucklist[i] + "\t");
  680. //}
  681. control = new ComboBox()
  682. {
  683. ItemsSource = GetFilesNames(Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", $"{ModuleName}\\Chuck"))
  684. };
  685. control.Height = 23;
  686. control.MinWidth = 100;
  687. control.MaxWidth = 300;
  688. control.SetBinding(ComboBox.SelectedItemProperty, binding);
  689. control.PreviewMouseLeftButtonDown += ChuckControl_PreviewMouseLeftButtonDown;
  690. break;
  691. case "DechuckRecipe":
  692. //if (currentChamber != JetChamber.Venus)
  693. //{
  694. // continue;
  695. //}
  696. //string[] dechucklist = new string[] { "" };
  697. //ArrayList dearrayList = new ArrayList(dechucklist.ToList());
  698. //IEnumerable<string> delist = GetFilesNames(Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName)).ToList().Where(item => item.ToLower().Contains("dechuck"));
  699. //foreach (var i in delist)
  700. //{
  701. // dearrayList.Add(i);
  702. //}
  703. //dechucklist = (string[])dearrayList.ToArray(typeof(string));
  704. //StringBuilder destringBuilder = new StringBuilder();
  705. //for (int i = 0; i < dechucklist.Length; i++)
  706. //{
  707. // destringBuilder.Append(dechucklist[i] + "\t");
  708. //}
  709. control = new ComboBox()
  710. {
  711. ItemsSource = GetFilesNames(Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", $"{ModuleName}\\DeChuck"))
  712. };
  713. control.Height = 23;
  714. control.MinWidth = 100;
  715. control.MaxWidth = 300;
  716. control.SetBinding(ComboBox.SelectedItemProperty, binding);
  717. control.PreviewMouseLeftButtonDown += DechuckControl_PreviewMouseLeftButtonDown;
  718. break;
  719. case "IsShowTolerance":
  720. control = new CheckBox();
  721. control.SetBinding(CheckBox.IsCheckedProperty, binding);
  722. control.Style = null;
  723. control.VerticalAlignment = VerticalAlignment.Center;
  724. (control as CheckBox).Checked += RecipeViewModel_Checked;
  725. (control as CheckBox).Unchecked += RecipeViewModel_Checked;
  726. break;
  727. default:
  728. control = new TextBox();
  729. control.Margin = new Thickness(1, 0, 0, 0);
  730. control.BorderThickness = new Thickness(0, 0, 0, 1);
  731. control.BorderBrush = Brushes.White;
  732. control.FontSize = 15;
  733. control.Foreground = Brushes.Green;
  734. control.Background = Brushes.Transparent;
  735. control.VerticalAlignment = VerticalAlignment.Center;
  736. control.MinWidth = 15;
  737. control.SetBinding(TextBox.TextProperty, binding);
  738. object[] objAttrs = propertyInfo.GetCustomAttributes(typeof(IsOnlyReadAttribute), true);
  739. if (objAttrs.Length > 0)
  740. {
  741. (control as TextBox).IsReadOnly = true;
  742. }
  743. break;
  744. }
  745. //switch (propertyTypeName)
  746. //{
  747. // case "Int32":
  748. // case "String":
  749. // control = new TextBox();
  750. // control.Margin = new Thickness(1, 0, 0, 0);
  751. // control.BorderThickness = new Thickness(0, 0, 0, 1);
  752. // //control.BorderBrush = Brushes.Black;
  753. // control.FontSize = 15;
  754. // control.Foreground = Brushes.Green;
  755. // control.Background = Brushes.Transparent;
  756. // control.VerticalAlignment = VerticalAlignment.Center;
  757. // control.MinWidth = 15;
  758. // control.SetBinding(TextBox.TextProperty, binding);
  759. // object[] objAttrs = propertyInfo.GetCustomAttributes(typeof(IsOnlyReadAttribute), true);
  760. // if (objAttrs.Length > 0)
  761. // {
  762. // (control as TextBox).IsReadOnly = true;
  763. // }
  764. // break;
  765. // case "Boolean":
  766. // control = new CheckBox();
  767. // control.SetBinding(CheckBox.IsCheckedProperty, binding);
  768. // break;
  769. // default:
  770. // control = new ComboBox();
  771. // control.Height = 23;
  772. // control.SetBinding(ComboBox.SelectedItemProperty, binding);
  773. // ItemsControlHelper.SetEnumValuesToItemsSource(control, true);
  774. // break;
  775. //}
  776. control.Margin = new Thickness(20, 3, 0, 7);
  777. control.Width = 250;
  778. HeadWrapPanel.Children.Add(control);
  779. }
  780. }
  781. private void RecipeViewModel_Checked(object sender, RoutedEventArgs e)
  782. {
  783. bool? isTolerance = (sender as CheckBox).IsChecked;
  784. LoadRecipe(CurrentRecipe);
  785. }
  786. private void Control_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  787. {
  788. }
  789. private void ChuckControl_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  790. {
  791. var items = GetFilesNames(Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", $"{ModuleName}\\Chuck")).ToList();
  792. items.Add("");
  793. (sender as ComboBox).ItemsSource = items;
  794. }
  795. private void DechuckControl_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  796. {
  797. var items = GetFilesNames(Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", $"{ModuleName}\\DeChuck")).ToList();
  798. items.Add("");
  799. (sender as ComboBox).ItemsSource = items;
  800. }
  801. private void ChangeUI(object sender, SelectionChangedEventArgs e)
  802. {
  803. var t = sender as ComboBox;
  804. if (t.SelectedValue.ToString() != "Process")
  805. {
  806. headWrapPanel.Children[8].Visibility = Visibility.Collapsed;
  807. headWrapPanel.Children[9].Visibility = Visibility.Collapsed;
  808. headWrapPanel.Children[10].Visibility = Visibility.Collapsed;
  809. headWrapPanel.Children[11].Visibility = Visibility.Collapsed;
  810. }
  811. else
  812. {
  813. headWrapPanel.Children[8].Visibility = Visibility.Visible;
  814. headWrapPanel.Children[9].Visibility = Visibility.Visible;
  815. headWrapPanel.Children[10].Visibility = Visibility.Visible;
  816. headWrapPanel.Children[11].Visibility = Visibility.Visible;
  817. }
  818. }
  819. private void MenuItemLeftInsert_Click(object sender, RoutedEventArgs e)
  820. {
  821. var t = ((sender as MenuItem).Parent as ContextMenu).PlacementTarget as TextBox;
  822. int insertIndex = Convert.ToInt32(t.Text);
  823. if (copyIndex == -1)
  824. {
  825. var recipeStep = new RecipeStep();
  826. recipeStep.LstUnit = RecipeUnity.GetAllUnits(currentChamber, CurrentRecipe.Header.Type);
  827. CurrentRecipe.Steps.Insert(insertIndex - 1, recipeStep);
  828. }
  829. else
  830. {
  831. var t1 = JsonConvert.SerializeObject(CurrentRecipe);
  832. var recipeStep = Recipe.Load(t1).Steps[copyIndex - 1];
  833. CurrentRecipe.Steps.Insert(insertIndex - 1, recipeStep);
  834. }
  835. for (int i = 0; i < CurrentRecipe.Steps.Count; i++)
  836. {
  837. CurrentRecipe.Steps[i].StepNo = i + 1;
  838. }
  839. LoadRecipe(CurrentRecipe);
  840. }
  841. private void MenuItemRightInsert_Click(object sender, RoutedEventArgs e)
  842. {
  843. var t = ((sender as MenuItem).Parent as ContextMenu).PlacementTarget as TextBox;
  844. int insertIndex = Convert.ToInt32(t.Text);
  845. if (copyIndex == -1)
  846. {
  847. var recipeStep = new RecipeStep();
  848. recipeStep.LstUnit = RecipeUnity.GetAllUnits(currentChamber, CurrentRecipe.Header.Type);
  849. CurrentRecipe.Steps.Insert(insertIndex, recipeStep);
  850. }
  851. else
  852. {
  853. var t1 = JsonConvert.SerializeObject(CurrentRecipe);
  854. var recipeStep = Recipe.Load(t1).Steps[copyIndex - 1];
  855. CurrentRecipe.Steps.Insert(insertIndex, recipeStep);
  856. }
  857. for (int i = 0; i < CurrentRecipe.Steps.Count; i++)
  858. {
  859. CurrentRecipe.Steps[i].StepNo = i + 1;
  860. }
  861. LoadRecipe(CurrentRecipe);
  862. }
  863. private void MenuItemDelete_Click(object sender, RoutedEventArgs e)
  864. {
  865. var t = ((sender as MenuItem).Parent as ContextMenu).PlacementTarget as TextBox;
  866. int deleteIndex = Convert.ToInt32(t.Text);
  867. //OnDeleteStep(deleteIndex - 1);
  868. CurrentRecipe.Steps.RemoveAt(deleteIndex - 1);
  869. for (int i = 0; i < CurrentRecipe.Steps.Count; i++)
  870. {
  871. CurrentRecipe.Steps[i].StepNo = i + 1;
  872. }
  873. LoadRecipe(CurrentRecipe);
  874. }
  875. private void MenuItemCopy_Click(object sender, RoutedEventArgs e)
  876. {
  877. var t = ((sender as MenuItem).Parent as ContextMenu).PlacementTarget as TextBox;
  878. copyIndex = Convert.ToInt32(t.Text);
  879. }
  880. #endregion
  881. #region 私有方法
  882. private void RecipeStepToGridColumn(RecipeStep recipeStep, Grid grid, int index, bool isInsert)
  883. {
  884. int location = 1;
  885. if (isInsert == true)
  886. {
  887. location -= 1;
  888. }
  889. Type recipeType = recipeStep.GetType();
  890. int cycleCount = 1;
  891. if (index == 0)
  892. {
  893. cycleCount = 2;
  894. }
  895. for (int j = 0; j < cycleCount; j++)
  896. {
  897. int i = 0;
  898. ColumnDefinition col1 = new ColumnDefinition();
  899. //col1.MinWidth = 50;
  900. grid.ColumnDefinitions.Insert(index, col1);
  901. //Binding stepcheckbinding = null;
  902. //grid.MinWidth = 200;
  903. foreach (PropertyInfo propertyInfo in recipeType.GetProperties())
  904. {
  905. string propertyInfoName = propertyInfo.Name;
  906. string propertyTypeName = propertyInfo.PropertyType.Name;
  907. if (propertyInfoName != "LstUnit")
  908. {
  909. if ((propertyInfoName == "EPDConfig" || propertyInfoName == "MinEndPointTime" || propertyInfoName == "MaxEndPointTime" || propertyInfoName == "OverEtchPercent") && isInstalledEPD == false)
  910. {
  911. continue;
  912. }
  913. if (index == 0 && grid.ColumnDefinitions.Count == 1)
  914. {
  915. RowDefinition row1 = new RowDefinition();
  916. grid.RowDefinitions.Add(row1);
  917. }
  918. if (grid.ColumnDefinitions.Count == 1 && j == 0)
  919. {
  920. TextBox textBlock = new TextBox();
  921. textBlock.IsReadOnly = true;
  922. object[] NameAttrs = propertyInfo.GetCustomAttributes(typeof(CustomName), true);
  923. string name;
  924. if (NameAttrs.Length > 0)
  925. {
  926. name = (NameAttrs[0] as CustomName).Name;
  927. }
  928. else
  929. {
  930. name = propertyInfo.Name;
  931. }
  932. textBlock.Text = name;
  933. grid.Children.Add(textBlock);
  934. textBlock.Background = new SolidColorBrush(Colors.BurlyWood);
  935. Grid.SetRow(textBlock, i);
  936. Grid.SetColumn(textBlock, 0);
  937. }
  938. else
  939. {
  940. Binding binding = new Binding()
  941. {
  942. Source = recipeStep, // 数据源
  943. Path = new PropertyPath(propertyInfoName), // 需绑定的数据源属性名
  944. Mode = BindingMode.TwoWay, // 绑定模式
  945. UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged //触发器
  946. };
  947. switch (propertyTypeName)
  948. {
  949. case "Int32":
  950. case "String":
  951. case "Single":
  952. case "Double":
  953. if (propertyInfoName == "EPDConfig")
  954. {
  955. if (currentEPDType == EPDType.Socket)
  956. {
  957. ComboBox EPDcomboBox = new ComboBox();
  958. EPDcomboBox.Style = (Style)recipeView.FindResource("customeComboBoxStyle");
  959. EPDcomboBox.Background = new SolidColorBrush(Colors.Black);
  960. EPDcomboBox.SetBinding(ComboBox.SelectedItemProperty, binding);
  961. EPDcomboBox.ItemsSource = EPDCfgList;
  962. grid.Children.Add(EPDcomboBox);
  963. Grid.SetRow(EPDcomboBox, i);
  964. Grid.SetColumn(EPDcomboBox, index + location);
  965. //EPDcomboBox.DropDownOpened += EPDcomboBox_DropDownOpened;
  966. }
  967. else if (currentEPDType == EPDType.WCF)
  968. {
  969. Button EPDButton = new Button();
  970. EPDButton.Content = "EndPoint";
  971. EPDButton.Cursor = Cursors.Hand;
  972. EPDButton.Tag = $"{CurrentRecipeName}.{(index + location).ToString()}";
  973. EPDButton.Style = null;
  974. EPDButton.Click += EPDButton_Click;
  975. grid.Children.Add(EPDButton);
  976. Grid.SetRow(EPDButton, i);
  977. Grid.SetColumn(EPDButton, index + location);
  978. }
  979. break;
  980. }
  981. TextBox textBox = new TextBox();
  982. textBox.HorizontalContentAlignment = HorizontalAlignment.Center;
  983. textBox.VerticalContentAlignment = VerticalAlignment.Center;
  984. textBox.SetBinding(TextBox.TextProperty, binding);
  985. grid.Children.Add(textBox);
  986. Grid.SetRow(textBox, i);
  987. Grid.SetColumn(textBox, index + location);
  988. object[] objAttrs = propertyInfo.GetCustomAttributes(typeof(IsOnlyReadAttribute), true);
  989. if (objAttrs.Length > 0)
  990. {
  991. textBox.IsReadOnly = true;
  992. ContextMenu contextmenu = new ContextMenu();
  993. textBox.ContextMenu = contextmenu;
  994. MenuItem menuItemDelete = new MenuItem();
  995. menuItemDelete.Header = "Delete";
  996. menuItemDelete.Click += MenuItemDelete_Click;
  997. MenuItem menuItemLeftInsert = new MenuItem();
  998. menuItemLeftInsert.Header = "Left Insert";
  999. menuItemLeftInsert.Click += MenuItemLeftInsert_Click;
  1000. MenuItem menuItemRightInsert = new MenuItem();
  1001. menuItemRightInsert.Header = "Right Insert";
  1002. menuItemRightInsert.Click += MenuItemRightInsert_Click;
  1003. MenuItem menuItemCopy = new MenuItem();
  1004. menuItemCopy.Tag = textBox.Text;
  1005. menuItemCopy.Header = "Copy";
  1006. menuItemCopy.Click += MenuItemCopy_Click;
  1007. contextmenu.Items.Add(menuItemCopy);
  1008. contextmenu.Items.Add(menuItemDelete);
  1009. contextmenu.Items.Add(menuItemLeftInsert);
  1010. contextmenu.Items.Add(menuItemRightInsert);
  1011. }
  1012. break;
  1013. case "Boolean":
  1014. CheckBox checkBox = new CheckBox();
  1015. checkBox.SetBinding(CheckBox.IsCheckedProperty, binding);
  1016. grid.Children.Add(checkBox);
  1017. Grid.SetRow(checkBox, i);
  1018. Grid.SetColumn(checkBox, index + location);
  1019. break;
  1020. default:
  1021. ComboBox comboBox = new ComboBox();
  1022. comboBox.Style = (Style)recipeView.FindResource("customeComboBoxStyle");
  1023. //comboBox.BorderThickness = new Thickness(1, 0, 1, 0);
  1024. comboBox.Background = new SolidColorBrush(Colors.Black);
  1025. comboBox.SetBinding(ComboBox.SelectedItemProperty, binding);
  1026. ItemsControlHelper.SetEnumValuesToItemsSource(comboBox, true);
  1027. grid.Children.Add(comboBox);
  1028. Grid.SetRow(comboBox, i);
  1029. Grid.SetColumn(comboBox, index + location);
  1030. break;
  1031. }
  1032. }
  1033. i++;
  1034. }
  1035. }
  1036. int k = 0;
  1037. foreach (var x in recipeStep.LstUnit.ToList())
  1038. {
  1039. Type unitType = x.GetType();
  1040. //bool isIgnore = false;
  1041. Binding checkbinding = null;
  1042. foreach (PropertyInfo propertyInfo in unitType.GetProperties())
  1043. {
  1044. object[] IgnoreAttrs = propertyInfo.GetCustomAttributes(typeof(IsCanConfigIgnore), true);
  1045. bool IsEnableRecipeExtension = Convert.ToBoolean(QueryDataClient.Instance.Service.GetConfig($"{ModuleName}.IsEnableRecipeExtension"));
  1046. if (IgnoreAttrs.Length > 0 && IsEnableRecipeExtension == false)
  1047. {
  1048. break;
  1049. }
  1050. object[] toleranceAttrs = propertyInfo.GetCustomAttributes(typeof(IsTolerance), true);
  1051. if (toleranceAttrs.Length > 0 && CurrentRecipe.Header.IsShowTolerance==false)
  1052. {
  1053. continue;
  1054. }
  1055. if (index == 0 && grid.ColumnDefinitions.Count == 1)
  1056. {
  1057. RowDefinition row1 = new RowDefinition();
  1058. grid.RowDefinitions.Add(row1);
  1059. }
  1060. if (grid.ColumnDefinitions.Count == 1 && j == 0)
  1061. {
  1062. TextBox textBlock = new TextBox();
  1063. textBlock.IsReadOnly = true;
  1064. switch (propertyInfo.Name)
  1065. {
  1066. case "Gas1":
  1067. var data1 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas1");
  1068. textBlock.Text = $"{propertyInfo.Name}({data1.DisplayName},{data1.Scale})";
  1069. break;
  1070. case "Gas2":
  1071. var data2 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas2");
  1072. textBlock.Text = $"{propertyInfo.Name}({data2.DisplayName},{data2.Scale})";
  1073. break;
  1074. case "Gas3":
  1075. var data3 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas3");
  1076. textBlock.Text = $"{propertyInfo.Name}({data3.DisplayName},{data3.Scale})";
  1077. break;
  1078. case "Gas4":
  1079. var data4 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas4");
  1080. textBlock.Text = $"{propertyInfo.Name}({data4.DisplayName},{data4.Scale})";
  1081. break;
  1082. case "Gas5":
  1083. var data5 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas5");
  1084. textBlock.Text = $"{propertyInfo.Name}({data5.DisplayName},{data5.Scale})";
  1085. break;
  1086. case "Gas6":
  1087. var data6 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas6");
  1088. textBlock.Text = $"{propertyInfo.Name}({data6.DisplayName},{data6.Scale})";
  1089. break;
  1090. case "Gas7":
  1091. var data7 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas7");
  1092. textBlock.Text = $"{propertyInfo.Name}({data7.DisplayName},{data7.Scale})";
  1093. break;
  1094. case "Gas8":
  1095. var data8 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas8");
  1096. textBlock.Text = $"{propertyInfo.Name}({data8.DisplayName},{data8.Scale})";
  1097. break;
  1098. case "Gas9":
  1099. var data9 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas9");
  1100. textBlock.Text = $"{propertyInfo.Name}({data9.DisplayName},{data9.Scale})";
  1101. break;
  1102. case "Gas10":
  1103. var data10 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas10");
  1104. textBlock.Text = $"{propertyInfo.Name}({data10.DisplayName},{data10.Scale})";
  1105. break;
  1106. case "Gas11":
  1107. var data11 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas11");
  1108. textBlock.Text = $"{propertyInfo.Name}({data11.DisplayName},{data11.Scale})";
  1109. break;
  1110. case "Gas12":
  1111. var data12 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas12");
  1112. textBlock.Text = $"{propertyInfo.Name}({data12.DisplayName},{data12.Scale})";
  1113. break;
  1114. //case "HeaterPressure":
  1115. // textBlock.Text = "Pressure(Pa)";
  1116. // break;
  1117. //case "HeaterTemp":
  1118. // textBlock.Text = "Heater Temp(℃)";
  1119. // break;
  1120. //case "HeaterRatio":
  1121. // textBlock.Text = "Heater Ratio";
  1122. // break;
  1123. default:
  1124. object[] NameAttrs = propertyInfo.GetCustomAttributes(typeof(CustomName), true);
  1125. string name;
  1126. if (NameAttrs.Length > 0)
  1127. {
  1128. name = (NameAttrs[0] as CustomName).Name;
  1129. }
  1130. else
  1131. {
  1132. name = propertyInfo.Name;
  1133. }
  1134. textBlock.Text = name;
  1135. break;
  1136. }
  1137. textBlock.Background = solidColorBrushes[k % solidColorBrushes.Count];
  1138. grid.Children.Add(textBlock);
  1139. Grid.SetRow(textBlock, i);
  1140. Grid.SetColumn(textBlock, 0);
  1141. }
  1142. else
  1143. {
  1144. Binding binding = new Binding()
  1145. {
  1146. Source = recipeStep.LstUnit[k], // 数据源
  1147. //Path = new PropertyPath($"LstUnit[{k}]." + propertyInfo.Name), // 需绑定的数据源属性名
  1148. Path = new PropertyPath(propertyInfo.Name), // 需绑定的数据源属性名
  1149. Mode = BindingMode.TwoWay, // 绑定模式
  1150. UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged //触发器
  1151. };
  1152. var item = propertyInfo.PropertyType.Name;
  1153. if (propertyInfo.Name == "UnitName")
  1154. {
  1155. TextBox textBlock1 = new TextBox();
  1156. textBlock1.HorizontalContentAlignment = HorizontalAlignment.Center;
  1157. textBlock1.VerticalContentAlignment = VerticalAlignment.Center;
  1158. textBlock1.Text = propertyInfo.GetValue(x).ToString();
  1159. textBlock1.IsReadOnly = true;
  1160. grid.Children.Add(textBlock1);
  1161. Grid.SetRow(textBlock1, i);
  1162. Grid.SetColumn(textBlock1, index + location);
  1163. }
  1164. else
  1165. {
  1166. switch (item)
  1167. {
  1168. case "Int32":
  1169. case "String":
  1170. case "Single":
  1171. case "Double":
  1172. //if (checkbinding != null)
  1173. //{
  1174. // break;
  1175. //}
  1176. TextBox textBox = new TextBox();
  1177. textBox.HorizontalContentAlignment = HorizontalAlignment.Center;
  1178. textBox.VerticalContentAlignment = VerticalAlignment.Center;
  1179. if (checkbinding == null)
  1180. {
  1181. textBox.IsEnabled = true;
  1182. }
  1183. else
  1184. {
  1185. textBox.SetBinding(TextBox.IsEnabledProperty, checkbinding);
  1186. }
  1187. switch (propertyInfo.Name)
  1188. {
  1189. case "Gas1":
  1190. var data1 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas1");
  1191. TextBoxMaxValue.SetMaxValue(textBox, (int)data1.Scale);
  1192. break;
  1193. case "Gas2":
  1194. var data2 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas2");
  1195. TextBoxMaxValue.SetMaxValue(textBox, (int)data2.Scale);
  1196. break;
  1197. case "Gas3":
  1198. var data3 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas3");
  1199. TextBoxMaxValue.SetMaxValue(textBox, (int)data3.Scale);
  1200. break;
  1201. case "Gas4":
  1202. var data4 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas4");
  1203. TextBoxMaxValue.SetMaxValue(textBox, (int)data4.Scale);
  1204. break;
  1205. case "Gas5":
  1206. var data5 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas5");
  1207. TextBoxMaxValue.SetMaxValue(textBox, (int)data5.Scale);
  1208. break;
  1209. case "Gas6":
  1210. var data6 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas6");
  1211. TextBoxMaxValue.SetMaxValue(textBox, (int)data6.Scale);
  1212. break;
  1213. case "Gas7":
  1214. var data7 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas7");
  1215. TextBoxMaxValue.SetMaxValue(textBox, (int)data7.Scale);
  1216. break;
  1217. case "Gas8":
  1218. var data8 = (AITMfcData)QueryDataClient.Instance.Service.GetData($"{ModuleName}.MfcGas8");
  1219. TextBoxMaxValue.SetMaxValue(textBox, (int)data8.Scale);
  1220. break;
  1221. }
  1222. textBox.SetBinding(TextBox.TextProperty, binding);
  1223. grid.Children.Add(textBox);
  1224. Grid.SetRow(textBox, i);
  1225. Grid.SetColumn(textBox, index + location);
  1226. object[] objAttrs = propertyInfo.GetCustomAttributes(typeof(IsOnlyReadAttribute), true);
  1227. if (objAttrs.Length > 0)
  1228. {
  1229. textBox.IsReadOnly = true;
  1230. }
  1231. break;
  1232. case "Boolean":
  1233. CheckBox checkBox = new CheckBox();
  1234. if (checkbinding == null)
  1235. {
  1236. checkbinding = new Binding
  1237. {
  1238. Source = checkBox, // 数据源
  1239. Path = new PropertyPath("IsChecked"), // 需绑定的数据源属性名
  1240. Mode = BindingMode.TwoWay, // 绑定模式
  1241. UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged //触发器
  1242. };
  1243. }
  1244. checkBox.SetBinding(CheckBox.IsCheckedProperty, binding);
  1245. grid.Children.Add(checkBox);
  1246. Grid.SetRow(checkBox, i);
  1247. Grid.SetColumn(checkBox, index + location);
  1248. break;
  1249. default:
  1250. //if (checkbinding != null)
  1251. //{
  1252. // break;
  1253. //}
  1254. ComboBox comboBox = new ComboBox();
  1255. comboBox.BorderBrush = Brushes.Gray;
  1256. comboBox.Style = (Style)recipeView.FindResource("customeComboBoxStyle");
  1257. //comboBox.BorderThickness =new Thickness(1,0,1,0);
  1258. if (checkbinding == null)
  1259. {
  1260. comboBox.IsEnabled = true;
  1261. }
  1262. else
  1263. {
  1264. comboBox.SetBinding(TextBox.IsEnabledProperty, checkbinding);
  1265. }
  1266. comboBox.Background = Brushes.White;
  1267. string path = propertyInfo.Name;
  1268. comboBox.SetBinding(ComboBox.SelectedItemProperty, binding);
  1269. ItemsControlHelper.SetEnumValuesToItemsSource(comboBox, true);
  1270. grid.Children.Add(comboBox);
  1271. Grid.SetRow(comboBox, i);
  1272. Grid.SetColumn(comboBox, index + location);
  1273. break;
  1274. }
  1275. }
  1276. }
  1277. i++;
  1278. }
  1279. k++;
  1280. }
  1281. }
  1282. }
  1283. private void EPDButton_Click(object sender, RoutedEventArgs e)
  1284. {
  1285. Button button = sender as Button;
  1286. string para = button.Tag.ToString();
  1287. int stepno = Convert.ToInt32(para.Split('.')[1]) - 1;
  1288. var endpointconfigitem = new MECF.Framework.Common.CommonData.EndPointConfigItem();
  1289. if (CurrentRecipe.Steps[stepno].EPDConfig != null && CurrentRecipe.Steps[stepno].EPDConfig.Length > 20)
  1290. {
  1291. endpointconfigitem.SetValue(CurrentRecipe.Steps[stepno].EPDConfig);
  1292. }
  1293. (new EndPointDlg(para, endpointconfigitem, CurrentRecipe)).ShowDialog();
  1294. }
  1295. private void UpdateRecipeFileList()
  1296. {
  1297. XmlDocument doc = new XmlDocument();
  1298. doc.LoadXml(GetXmlRecipeList());
  1299. treeViewRcpList.Items.Clear();
  1300. CreateTreeViewItems(doc.DocumentElement, this.treeViewRcpList);
  1301. ExpandAllItems(this.treeViewRcpList);
  1302. }
  1303. private void LoadRecipe(Recipe recipe)
  1304. {
  1305. copyIndex = -1;
  1306. bodyStackPanel.Children.Clear();
  1307. //CurrentRecipe = null;
  1308. GC.Collect(); // This should pick up the control removed at a previous MouseDown
  1309. GC.WaitForPendingFinalizers(); // Doesn't help either
  1310. GC.Collect();
  1311. GC.WaitForPendingFinalizers(); // Doesn't help either
  1312. CurrentRecipe = recipe;
  1313. if (CurrentRecipe.Header.Type == Venus_Core.RecipeType.Process && CurrentRecipe.Header.ChuckRecipe != "" && CurrentRecipe.Header.ChuckRecipe != null)
  1314. {
  1315. Grid chuckGrid = new Grid();
  1316. chuckGrid.IsEnabled = false;
  1317. chuckGrid.Margin = new Thickness(15);
  1318. string chuckRecipeData = m_uiRecipeManager.LoadRecipe(ModuleName, $"Chuck\\{CurrentRecipe.Header.ChuckRecipe}");
  1319. if (chuckRecipeData == "")
  1320. {
  1321. return;
  1322. }
  1323. var chuckRecipe = Recipe.Load(chuckRecipeData);
  1324. for (int i = 0; i < chuckRecipe.Steps.Count; i++)
  1325. {
  1326. RecipeStepToGridColumn(chuckRecipe.Steps[i], chuckGrid, i, false);
  1327. }
  1328. bodyStackPanel.Children.Add(chuckGrid);
  1329. }
  1330. Grid proressGrid = new Grid();
  1331. proressGrid.Margin = new Thickness(15);
  1332. //index = 0;
  1333. for (int i = 0; i < recipe.Steps.Count; i++)
  1334. {
  1335. RecipeStepToGridColumn(recipe.Steps[i], proressGrid, i, false);
  1336. }
  1337. bodyStackPanel.Children.Add(proressGrid);
  1338. currentRecipeGrid = proressGrid;
  1339. if (CurrentRecipe.Header.Type == Venus_Core.RecipeType.Process && CurrentRecipe.Header.DechuckRecipe != "" && CurrentRecipe.Header.DechuckRecipe != null)
  1340. {
  1341. Grid deChuckGrid = new Grid();
  1342. deChuckGrid.IsEnabled = false;
  1343. deChuckGrid.Margin = new Thickness(15);
  1344. string path = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, "DeChuck", $"{CurrentRecipe.Header.DechuckRecipe}.rcp");
  1345. string DechuckRecipeData = m_uiRecipeManager.LoadRecipeByPath(path);
  1346. //index = 0;
  1347. var dechuckRecipe = Recipe.Load(DechuckRecipeData);
  1348. for (int i = 0; i < dechuckRecipe.Steps.Count; i++)
  1349. {
  1350. RecipeStepToGridColumn(dechuckRecipe.Steps[i], deChuckGrid, i, false);
  1351. }
  1352. bodyStackPanel.Children.Add(deChuckGrid);
  1353. }
  1354. }
  1355. private void OnDeleteStep(int index)
  1356. {
  1357. if (CurrentRecipe != null && CurrentRecipe.Steps.Count > 1)
  1358. {
  1359. currentRecipeGrid.Children.RemoveRange(currentRecipeGrid.RowDefinitions.Count * (index + 1), currentRecipeGrid.RowDefinitions.Count);
  1360. currentRecipeGrid.ColumnDefinitions.RemoveAt(index);
  1361. for (int i = 1; i <= CurrentRecipe.Steps.Count; i++)
  1362. {
  1363. CurrentRecipe.Steps[i - 1].StepNo = i;
  1364. }
  1365. CurrentRecipe.Steps.RemoveAt(index);
  1366. }
  1367. }
  1368. private void OnRefresh()
  1369. {
  1370. if (CurrentRecipeName != "")
  1371. {
  1372. string path = Path.Combine(QueryDataClient.Instance.Service.GetData("GetRTPath").ToString(), "Recipes", ModuleName, typeFolder, $"{CurrentRecipeName}.rcp");
  1373. string xmlRecipeData = m_uiRecipeManager.LoadRecipeByPath(path);
  1374. CurrentRecipe = Recipe.Load(xmlRecipeData);
  1375. LoadHeadWrapPanel(headWrapPanel, CurrentRecipe);
  1376. LoadRecipe(CurrentRecipe);
  1377. }
  1378. }
  1379. private void OnTolerance()
  1380. {
  1381. }
  1382. private void OnExpand()
  1383. {
  1384. HeadExpand = !HeadExpand;
  1385. if (HeadExpand)
  1386. {
  1387. recipeView.expandGrid.Width = 300;
  1388. }
  1389. else
  1390. {
  1391. recipeView.expandGrid.Width = 30;
  1392. }
  1393. }
  1394. private void OnUnload()
  1395. {
  1396. //if (CurrentRecipeName == null || CurrentRecipeName == "")
  1397. //{
  1398. // return;
  1399. //}
  1400. //if (WPFMessageBox.ShowQuestion($"Is Save Recipe {CurrentRecipeName}", "", false) == MessageBoxResult.Yes)
  1401. //{
  1402. // OnSaveRecipe();
  1403. //}
  1404. }
  1405. private void ExpandAllItems(ItemsControl control)
  1406. {
  1407. if (control == null)
  1408. {
  1409. return;
  1410. }
  1411. foreach (Object item in control.Items)
  1412. {
  1413. System.Windows.Controls.TreeViewItem treeItem = control.ItemContainerGenerator.ContainerFromItem(item) as TreeViewItem;
  1414. if (treeItem == null || !treeItem.HasItems)
  1415. {
  1416. continue;
  1417. }
  1418. treeItem.IsExpanded = true;
  1419. ExpandAllItems(treeItem as ItemsControl);
  1420. }
  1421. }
  1422. #endregion
  1423. }
  1424. }