RecipeViewModel.cs 73 KB

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