StandardHotReservoirsViewModel.cs 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181
  1. using MECF.Framework.Common.CommonData.Metal;
  2. using MECF.Framework.Common.CommonData.Reservoir;
  3. using MECF.Framework.Common.DataCenter;
  4. using MECF.Framework.Common.OperationCenter;
  5. using MECF.Framework.Common.Persistent.Reservoirs;
  6. using MECF.Framework.Common.RecipeCenter;
  7. using MECF.Framework.Common.Utilities;
  8. using CyberX8_Core;
  9. using CyberX8_MainPages.PMs;
  10. using Prism.Commands;
  11. using Prism.Mvvm;
  12. using System;
  13. using System.Collections.Generic;
  14. using System.Collections.ObjectModel;
  15. using System.Windows.Input;
  16. using System.Windows.Threading;
  17. using MECF.Framework.Common.CommonData.TemperatureControl;
  18. using MECF.Framework.Common.CommonData.PowerSupplier;
  19. using MECF.Framework.Common.Device.Safety;
  20. using MECF.Framework.Common.ProcessCell;
  21. namespace CyberX8_MainPages.ViewModels
  22. {
  23. public class StandardHotReservoirsViewModel : BindableBase
  24. {
  25. #region 常量
  26. private const string RESERVOIRS_DATA = "ReservoirsData";
  27. private const string RESERVOIRS = "reservoirs";
  28. private const string PERSISTENT_VALUE = "PersistentValue";
  29. private const string METALDEVICEDATA = "MetalDeviceData";
  30. private const string RESERVOIRDEVICEDATA = "ReservoirDeviceData";
  31. private const string REPLEN_PERSISTENT_VALUE = "ReplenPersistentValue";
  32. #endregion
  33. #region 内部变量
  34. #region system
  35. /// <summary>
  36. /// rt查询key
  37. /// </summary>
  38. private List<string> _rtDataKeys = new List<string>();
  39. /// <summary>
  40. /// 时钟
  41. /// </summary>
  42. DispatcherTimer _timer;
  43. /// <summary>
  44. /// rt查询数据
  45. /// </summary>
  46. private Dictionary<string, object> _rtDataValueDic = new Dictionary<string, object>();
  47. #endregion
  48. #region Common
  49. /// <summary>
  50. /// 是否为调速泵
  51. /// </summary>
  52. private bool _isRegulatePump;
  53. /// <summary>
  54. /// 泵速
  55. /// </summary>
  56. private int _pumpSpeed;
  57. /// <summary>
  58. /// 是否配备CMM
  59. /// </summary>
  60. private bool _isCMMConfig;
  61. private double _avgLevel;
  62. /// <summary>
  63. /// Module
  64. /// </summary>
  65. private string _module;
  66. /// <summary>
  67. /// Operation Mode
  68. /// </summary>
  69. private string _operatingMode;
  70. /// <summary>
  71. /// 状态
  72. /// </summary>
  73. private string _state;
  74. /// <summary>
  75. /// Reservoirs Persistent数据
  76. /// </summary>
  77. private ReservoirsPersistentValue _reservoirsPersistent;
  78. /// <summary>
  79. /// Reservoir数据
  80. /// </summary>
  81. private StandardHotReservoirData _reservoirData;
  82. /// <summary>
  83. /// Metal数据集合
  84. /// </summary>
  85. private ObservableCollection<StandardHotMetalDeviceData> _metalDataCollection = new ObservableCollection<StandardHotMetalDeviceData>();
  86. /// <summary>
  87. /// CellModuleName集合
  88. /// </summary>
  89. private ObservableCollection<string> _cellModuleNameCollection = new ObservableCollection<string>();
  90. /// <summary>
  91. /// CellModuleSignal集合
  92. /// </summary>
  93. private ObservableCollection<bool> _cellModuleSignalPump = new ObservableCollection<bool>();
  94. /// <summary>
  95. /// Cells数量
  96. /// </summary>
  97. private int _cellsCount;
  98. /// <summary>
  99. /// 手动注水时长(秒)
  100. /// </summary>
  101. private int _manualFillSeconds;
  102. /// <summary>
  103. /// 是否正在手动注水
  104. /// </summary>
  105. private bool _isManualReplen;
  106. /// <summary>
  107. /// DIValveMaxOnTime
  108. /// </summary>
  109. private double _diValveMaxOnTime;
  110. /// <summary>
  111. /// 是否超过PH值下限
  112. /// </summary>
  113. private bool _isPHLowLimit;
  114. /// <summary>
  115. /// 是否超过PH值下限
  116. /// </summary>
  117. private bool _isPHHighLimit;
  118. /// <summary>
  119. /// TemperatureControl Module Name
  120. /// </summary>
  121. private TemperatureControllerData _temperatureControlData;
  122. /// <summary>
  123. /// PowerSupply Module Name
  124. /// </summary>
  125. private PowerSupplierData _cmmPowerSupplierData;
  126. /// <summary>
  127. /// 是否超过HighLevel
  128. /// </summary>
  129. private bool _isHighLevel;
  130. /// <summary>
  131. /// 是否超过LowLevel
  132. /// </summary>
  133. private bool _isLowLevel;
  134. /// <summary>
  135. /// 是否触发highsafety
  136. /// </summary>
  137. private bool _isHighSafety;
  138. /// <summary>
  139. /// HED Flow
  140. /// </summary>
  141. private bool _hedFlowIsOn;
  142. /// <summary>
  143. /// DiReplen是否报错
  144. /// </summary>
  145. private bool _isDiReplenFault;
  146. /// <summary>
  147. /// Safety Data
  148. /// </summary>
  149. private SafetyData _safetyData;
  150. /// <summary>
  151. /// 页面功能启用
  152. /// </summary>
  153. private bool _isEnabled;
  154. /// <summary>
  155. /// AutoMode页面功能启用
  156. /// </summary>
  157. private bool _isAutoEnabled;
  158. /// <summary>
  159. /// DosingSystem是否启用
  160. /// </summary>
  161. private bool _isDosingSystemEnabled;
  162. /// <summary>
  163. /// TC Enable状态
  164. /// </summary>
  165. private string _tcEnableStatus;
  166. /// <summary>
  167. /// 是否error状态
  168. /// </summary>
  169. private bool _isError;
  170. #endregion
  171. #region Recipe
  172. /// <summary>
  173. /// 当前的recipe
  174. /// </summary>
  175. private ResRecipe _currentRecipe;
  176. /// <summary>
  177. /// Recipe Mode
  178. /// </summary>
  179. private string _recipeMode;
  180. /// <summary>
  181. /// Selected Recipe Node
  182. /// </summary>
  183. private RecipeNode _selectedRecipeNode;
  184. /// <summary>
  185. /// Recipe Type
  186. /// </summary>
  187. private string _recipeType;
  188. /// <summary>
  189. /// Recipe Manager
  190. /// </summary>
  191. private UiRecipeManager _uiRecipeManager = new UiRecipeManager();
  192. #endregion
  193. #region CMM
  194. /// <summary>
  195. /// Flow High 状态(Warning:黄色,Error:红色)
  196. /// </summary>
  197. private string _flowHighStatus = "";
  198. /// <summary>
  199. /// Flow Low 状态(Warning:黄色,Error:红色)
  200. /// </summary>
  201. private string _flowLowStatus = "";
  202. /// <summary>
  203. /// PowerSupplier High电流状态
  204. /// </summary>
  205. private string _currentHighStatus = "";
  206. /// <summary>
  207. /// PowerSupplier Low电流状态
  208. /// </summary>
  209. private string _currentLowStatus = "";
  210. /// <summary>
  211. /// 是否低于最小电压
  212. /// </summary>
  213. private bool _isBelowMinVoltage = false;
  214. /// <summary>
  215. /// CMM Anode AHrs
  216. /// </summary>
  217. private double _reservoirCMMAnodeAHrs;
  218. /// <summary>
  219. /// CMM Cathode AHrs
  220. /// </summary>
  221. private double _reservoirCMMCathodeAHrs;
  222. /// <summary>
  223. /// CMM Anode用电量
  224. /// </summary>
  225. private double _cmmAnodeUsage;
  226. /// <summary>
  227. /// CMM Cathode用电量
  228. /// </summary>
  229. private double _cmmCathodeUsage;
  230. /// <summary>
  231. /// CMM Flow High Warning
  232. /// </summary>
  233. private double _reservoirCMMFlowHighWarning;
  234. /// <summary>
  235. /// CMM Flow High Error
  236. /// </summary>
  237. private double _reservoirCMMFlowHighError;
  238. /// <summary>
  239. /// CMM Flow Low Warning
  240. /// </summary>
  241. private double _reservoirCMMFlowLowWarning;
  242. /// <summary>
  243. /// CMM Flow Low Error
  244. /// </summary>
  245. private double _reservoirCMMFlowLowError;
  246. /// <summary>
  247. /// CMM Anode LifeTime AHrs
  248. /// </summary>
  249. private double _reservoirCMMAnodeLifeTimeAHrs;
  250. /// <summary>
  251. /// CMM Cathode LifeTime AHrs
  252. /// </summary>
  253. private double _reservoirCMMCathodeLifeTimeAHrs;
  254. /// <summary>
  255. /// HighLevel
  256. /// </summary>
  257. private double _reservoirHighLevel;
  258. /// <summary>
  259. /// LowLevel
  260. /// </summary>
  261. private double _reservoirLowLevel;
  262. /// <summary>
  263. /// CMM电量limit
  264. /// </summary>
  265. private double _cmmAnodeTotalAmpHoursWarningLimit;
  266. private double _cmmAnodeTotalAmpHoursFaultLimit;
  267. private double _cmmCathodeTotalAmpHoursWarningLimit;
  268. private double _cmmCathodeTotalAmpHoursFaultLimit;
  269. /// <summary>
  270. /// CMM电量报警灯
  271. /// </summary>
  272. private bool _isCMMAnodeTotalAmpHoursWarning;
  273. private bool _isCMMAnodeTotalAmpHoursFault;
  274. private bool _isCMMCathodeTotalAmpHoursWarning;
  275. private bool _isCMMCathodeTotalAmpHoursFault;
  276. #endregion
  277. #endregion
  278. #region 属性
  279. #region Common
  280. public double AvgLevel
  281. {
  282. get { return _avgLevel; }
  283. set { SetProperty(ref _avgLevel, value); }
  284. }
  285. /// <summary>
  286. /// Module
  287. /// </summary>
  288. public string Module
  289. {
  290. get { return _module; }
  291. set { SetProperty(ref _module, value); }
  292. }
  293. /// <summary>
  294. /// Operation Mode
  295. /// </summary>
  296. public string OperatingMode
  297. {
  298. get { return _operatingMode; }
  299. set { SetProperty(ref _operatingMode, value); }
  300. }
  301. /// <summary>
  302. /// 状态
  303. /// </summary>
  304. public string State
  305. {
  306. get { return _state; }
  307. set { SetProperty(ref _state, value); }
  308. }
  309. /// <summary>
  310. /// Reservoirs Persistent数据
  311. /// </summary>
  312. public ReservoirsPersistentValue ReservoirsPersistent
  313. {
  314. get { return _reservoirsPersistent; }
  315. set { SetProperty(ref _reservoirsPersistent, value); }
  316. }
  317. /// <summary>
  318. /// Reservoir数据
  319. /// </summary>
  320. public StandardHotReservoirData ReservoirData
  321. {
  322. get { return _reservoirData; }
  323. set { SetProperty(ref _reservoirData, value); }
  324. }
  325. /// <summary>
  326. /// Metal数据集合
  327. /// </summary>
  328. public ObservableCollection<StandardHotMetalDeviceData> MetalDataCollection
  329. {
  330. get { return _metalDataCollection; }
  331. set { SetProperty(ref _metalDataCollection, value); }
  332. }
  333. /// <summary>
  334. /// CellModuleName集合
  335. /// </summary>
  336. public ObservableCollection<string> CellModuleNameCollection
  337. {
  338. get { return _cellModuleNameCollection; }
  339. set { SetProperty(ref _cellModuleNameCollection, value); }
  340. }
  341. /// <summary>
  342. /// CellModuleSignalPump集合
  343. /// </summary>
  344. public ObservableCollection<bool> CellModuleSignalPump
  345. {
  346. get { return _cellModuleSignalPump; }
  347. set { SetProperty(ref _cellModuleSignalPump, value); }
  348. }
  349. /// <summary>
  350. /// Cells数量
  351. /// </summary>
  352. public int CellsCount
  353. {
  354. get { return _cellsCount; }
  355. set { SetProperty(ref _cellsCount, value); }
  356. }
  357. /// <summary>
  358. /// 是否超过PH值下限
  359. /// </summary>
  360. public bool IsPHLowLimit
  361. {
  362. get { return _isPHLowLimit; }
  363. set { SetProperty(ref _isPHLowLimit, value); }
  364. }
  365. /// <summary>
  366. /// 是否超过PH值下限
  367. /// </summary>
  368. public bool IsPHHighLimit
  369. {
  370. get { return _isPHHighLimit; }
  371. set { SetProperty(ref _isPHHighLimit, value); }
  372. }
  373. /// <summary>
  374. /// 手动注水时长(秒)
  375. /// </summary>
  376. public int ManualFillSeconds
  377. {
  378. get { return _manualFillSeconds; }
  379. set { SetProperty(ref _manualFillSeconds, value); }
  380. }
  381. /// <summary>
  382. /// 是否正在手动注水
  383. /// </summary>
  384. public bool IsManualReplen
  385. {
  386. get { return _isManualReplen; }
  387. set { SetProperty(ref _isManualReplen, value); }
  388. }
  389. /// <summary>
  390. /// DIValveMaxOnTime
  391. /// </summary>
  392. public double DIValveMaxOnTime
  393. {
  394. get { return _diValveMaxOnTime; }
  395. set { SetProperty(ref _diValveMaxOnTime, value);}
  396. }
  397. /// <summary>
  398. /// TemperatureControl Module Name
  399. /// </summary>
  400. public TemperatureControllerData TemperatureControlData
  401. {
  402. get { return _temperatureControlData; }
  403. set { SetProperty(ref _temperatureControlData, value); }
  404. }
  405. /// <summary>
  406. /// PowerSupply Module Name
  407. /// </summary>
  408. public PowerSupplierData CmmPowerSupplierData
  409. {
  410. get { return _cmmPowerSupplierData; }
  411. set { SetProperty(ref _cmmPowerSupplierData, value); }
  412. }
  413. /// <summary>
  414. /// 是否超过HighLevel
  415. /// </summary>
  416. public bool IsHighLevel
  417. {
  418. get { return _isHighLevel; }
  419. set { SetProperty(ref _isHighLevel, value); }
  420. }
  421. /// <summary>
  422. /// 是否超过LowLevel
  423. /// </summary>
  424. public bool IsLowLevel
  425. {
  426. get { return _isLowLevel; }
  427. set { SetProperty(ref _isLowLevel, value); }
  428. }
  429. /// <summary>
  430. /// 是否触发Highsafety
  431. /// </summary>
  432. public bool IsHighSafety
  433. {
  434. get { return _isHighSafety; }
  435. set { SetProperty(ref _isHighSafety, value); }
  436. }
  437. /// <summary>
  438. /// HED Flow
  439. /// </summary>
  440. public bool HEDFlowIsOn
  441. {
  442. get { return _hedFlowIsOn; }
  443. set { SetProperty(ref _hedFlowIsOn, value); }
  444. }
  445. /// <summary>
  446. /// DI Replen是否报错
  447. /// </summary>
  448. public bool IsDiReplenFault
  449. {
  450. get { return _isDiReplenFault; }
  451. set { SetProperty(ref _hedFlowIsOn, value); }
  452. }
  453. /// <summary>
  454. /// Safety数据
  455. /// </summary>
  456. public SafetyData CommonSafetyData
  457. {
  458. get { return _safetyData; }
  459. set { SetProperty(ref _safetyData, value); }
  460. }
  461. /// <summary>
  462. /// 页面功能启用
  463. /// </summary>
  464. public bool IsEnabled
  465. {
  466. get { return _isEnabled; }
  467. set { SetProperty(ref _isEnabled, value); }
  468. }
  469. /// <summary>
  470. /// AutoMode页面功能启用
  471. /// </summary>
  472. public bool IsAutoEnabled
  473. {
  474. get { return _isAutoEnabled; }
  475. set { SetProperty(ref _isAutoEnabled, value); }
  476. }
  477. /// <summary>
  478. /// DosingSystem是否启用
  479. /// </summary>
  480. public bool IsDosingSystemEnabled
  481. {
  482. get { return _isDosingSystemEnabled; }
  483. set { SetProperty(ref _isDosingSystemEnabled, value); }
  484. }
  485. /// <summary>
  486. /// TC Enable状态
  487. /// </summary>
  488. public string TCEnableStatus
  489. {
  490. get { return _tcEnableStatus; }
  491. set { SetProperty(ref _tcEnableStatus, value); }
  492. }
  493. /// <summary>
  494. /// 是否Error
  495. /// </summary>
  496. public bool IsError
  497. {
  498. get { return _isError; }
  499. set { SetProperty(ref _isError, value); }
  500. }
  501. /// <summary>
  502. /// 是否为调速泵
  503. /// </summary>
  504. public bool IsRegulatePump
  505. {
  506. get { return _isRegulatePump; }
  507. set { SetProperty(ref _isRegulatePump, value); }
  508. }
  509. /// <summary>
  510. /// 泵速
  511. /// </summary>
  512. public int PumpSpeed
  513. {
  514. get { return _pumpSpeed; }
  515. set { SetProperty(ref _pumpSpeed, value); }
  516. }
  517. #endregion
  518. #region Recipe
  519. /// <summary>
  520. /// Recipe内容
  521. /// </summary>
  522. public ResRecipe CurrentRecipe
  523. {
  524. get { return _currentRecipe; }
  525. set { SetProperty(ref _currentRecipe, value); }
  526. }
  527. /// <summary>
  528. /// Selected Recipe Node
  529. /// </summary>
  530. public RecipeNode SelectedRecipeNode
  531. {
  532. get { return _selectedRecipeNode; }
  533. set { SetProperty(ref _selectedRecipeNode, value); }
  534. }
  535. /// <summary>
  536. /// Recipe Mode
  537. /// </summary>
  538. public string RecipeMode
  539. {
  540. get { return _recipeMode; }
  541. set { SetProperty(ref _recipeMode, value); }
  542. }
  543. /// <summary>
  544. /// Recipe Type
  545. /// </summary>
  546. public string RecipeType
  547. {
  548. get { return _recipeType; }
  549. set { SetProperty(ref _recipeType, value); }
  550. }
  551. #endregion
  552. #region CMM
  553. /// <summary>
  554. /// 是否配备CMM
  555. /// </summary>
  556. public bool IsCMMConfig
  557. {
  558. get { return _isCMMConfig; }
  559. set { SetProperty(ref _isCMMConfig, value); }
  560. }
  561. /// <summary>
  562. /// Flow High 状态(Warning:黄色,Error:红色)
  563. /// </summary>
  564. public string FlowHighStatus
  565. {
  566. get { return _flowHighStatus; }
  567. set { SetProperty(ref _flowHighStatus, value); }
  568. }
  569. /// <summary>
  570. /// Flow Low 状态(Warning:黄色,Error:红色)
  571. /// </summary>
  572. public string FlowLowStatus
  573. {
  574. get { return _flowLowStatus; }
  575. set { SetProperty(ref _flowLowStatus, value); }
  576. }
  577. /// <summary>
  578. /// PowerSupplier High电流状态
  579. /// </summary>
  580. public string CurrentHighStatus
  581. {
  582. get { return _currentHighStatus; }
  583. set { SetProperty(ref _currentHighStatus, value); }
  584. }
  585. /// <summary>
  586. /// PowerSupplier Low电流状态
  587. /// </summary>
  588. public string CurrentLowStatus
  589. {
  590. get { return _currentLowStatus; }
  591. set { SetProperty(ref _currentLowStatus, value); }
  592. }
  593. /// <summary>
  594. /// 是否低于最小电压
  595. /// </summary>
  596. public bool IsBelowMinVoltage
  597. {
  598. get { return _isBelowMinVoltage; }
  599. set { SetProperty(ref _isBelowMinVoltage, value); }
  600. }
  601. /// <summary>
  602. /// CMM Anode 用电量
  603. /// </summary>
  604. public double CMMAnodeAHrs
  605. {
  606. get { return _reservoirCMMAnodeAHrs; ; }
  607. set { SetProperty(ref _reservoirCMMAnodeAHrs, value); }
  608. }
  609. /// <summary>
  610. /// CMM Cathode 用电量
  611. /// </summary>
  612. public double CMMCathodeAHrs
  613. {
  614. get { return _reservoirCMMCathodeAHrs; ; }
  615. set { SetProperty(ref _reservoirCMMCathodeAHrs, value); }
  616. }
  617. #endregion
  618. #region Config
  619. /// <summary>
  620. /// CMM Anode LifeTime用电量
  621. /// </summary>
  622. public double CMMAnodeLifeTimeAHrs
  623. {
  624. get { return _reservoirCMMAnodeLifeTimeAHrs; ; }
  625. set { SetProperty(ref _reservoirCMMAnodeLifeTimeAHrs, value); }
  626. }
  627. /// <summary>
  628. /// CMM Cathode LifeTime用电量
  629. /// </summary>
  630. public double CMMCathodeLifeTimeAHrs
  631. {
  632. get { return _reservoirCMMCathodeLifeTimeAHrs; ; }
  633. set { SetProperty(ref _reservoirCMMCathodeLifeTimeAHrs, value); }
  634. }
  635. /// <summary>
  636. /// CMM Anode用电量
  637. /// </summary>
  638. public double CMMAnodeUsage
  639. {
  640. get { return _cmmAnodeUsage; ; }
  641. set { SetProperty(ref _cmmAnodeUsage, value); }
  642. }
  643. /// <summary>
  644. /// CMM Cathode用电量
  645. /// </summary>
  646. public double CMMCathodeUsage
  647. {
  648. get { return _cmmCathodeUsage; ; }
  649. set { SetProperty(ref _cmmCathodeUsage, value); }
  650. }
  651. /// <summary>
  652. /// CMM电量报警灯
  653. /// </summary>
  654. public bool IsCMMAnodeTotalAmpHoursWarning
  655. {
  656. get { return _isCMMAnodeTotalAmpHoursWarning; }
  657. set { SetProperty(ref _isCMMAnodeTotalAmpHoursWarning, value); }
  658. }
  659. public bool IsCMMAnodeTotalAmpHoursFault
  660. {
  661. get { return _isCMMAnodeTotalAmpHoursFault; }
  662. set { SetProperty(ref _isCMMAnodeTotalAmpHoursFault, value); }
  663. }
  664. public bool IsCMMCathodeTotalAmpHoursWarning
  665. {
  666. get { return _isCMMCathodeTotalAmpHoursWarning; }
  667. set { SetProperty(ref _isCMMCathodeTotalAmpHoursWarning, value); }
  668. }
  669. public bool IsCMMCathodeTotalAmpHoursFault
  670. {
  671. get { return _isCMMCathodeTotalAmpHoursFault; }
  672. set { SetProperty(ref _isCMMCathodeTotalAmpHoursFault, value); }
  673. }
  674. #endregion
  675. #endregion
  676. #region 命令
  677. public ICommand InitializeCommand { get; set; }
  678. public ICommand OpenDIReplenValveCommand { get; set; }
  679. public ICommand CloseDIReplenValveCommand { get; set; }
  680. public ICommand OpenCellFlow1Command { get; set; }
  681. public ICommand OpenCellBypass1Command { get; set; }
  682. public ICommand OpenCellFlow2Command { get; set; }
  683. public ICommand OpenCellBypass2Command { get; set; }
  684. public ICommand OpenClampValve1Command { get; set; }
  685. public ICommand CloseClampValve1Command { get; set; }
  686. public ICommand OpenClampValve2Command { get; set; }
  687. public ICommand CloseClampValve2Command { get; set; }
  688. public ICommand ManualDireplenCommand { get; set; }
  689. public ICommand ResetTotalCommand { get; set; }
  690. public ICommand GotoPMCounterCommand { get; set; }
  691. public ICommand JumpDosingSystemCommand { get; set; }
  692. public ICommand HedPowerOnCommand { get; set; }
  693. public ICommand HedPowerOffCommand { get; set; }
  694. public ICommand ResPowerOnCommand { get; set; }
  695. public ICommand ResPowerOffCommand { get; set; }
  696. public ICommand PumpSpeedCommand { get; set; }
  697. #endregion
  698. /// <summary>
  699. /// 构造函数
  700. /// </summary>
  701. public StandardHotReservoirsViewModel()
  702. {
  703. InitializeCommand = new DelegateCommand<object>(InitializeAction);
  704. OpenDIReplenValveCommand = new DelegateCommand<object>(OnOpenDIReplenValve);
  705. CloseDIReplenValveCommand = new DelegateCommand<object>(OnCloseDIReplenValve);
  706. OpenCellFlow1Command = new DelegateCommand<object>(OnCellFlow1);
  707. OpenCellBypass1Command = new DelegateCommand<object>(OnCellBypass1);
  708. OpenCellFlow2Command = new DelegateCommand<object>(OnCellFlow2);
  709. OpenCellBypass2Command = new DelegateCommand<object>(OnCellBypass2);
  710. OpenClampValve1Command = new DelegateCommand<object>(OnOpenClampValve1);
  711. CloseClampValve1Command = new DelegateCommand<object>(OnCloseClampValve1);
  712. OpenClampValve2Command = new DelegateCommand<object>(OnOpenClampValve2);
  713. CloseClampValve2Command = new DelegateCommand<object>(OnCloseClampValve2);
  714. ManualDireplenCommand = new DelegateCommand<object>(ManualDireplenAction);
  715. ResetTotalCommand = new DelegateCommand(ResetTotalAction);
  716. GotoPMCounterCommand = new DelegateCommand<object>(GotoPMCounterAction);
  717. JumpDosingSystemCommand = new DelegateCommand<object>(JumpDosingSystemAction);
  718. HedPowerOnCommand = new DelegateCommand<object>(HedPowerOnAction);
  719. HedPowerOffCommand = new DelegateCommand<object>(HedPowerOffAction);
  720. ResPowerOnCommand = new DelegateCommand<object>(ResPowerOnAction);
  721. ResPowerOffCommand = new DelegateCommand<object>(ResPowerOffAction);
  722. PumpSpeedCommand = new DelegateCommand<object>(PumpSpeedAction);
  723. }
  724. /// <summary>
  725. /// 加载数据
  726. /// </summary>
  727. public void LoadData(string systemName)
  728. {
  729. RecipeType = "res";
  730. Module = systemName;
  731. _rtDataKeys.Clear();
  732. _rtDataKeys.Add($"{Module}.Metals");
  733. _rtDataKeys.Add($"{Module}.ReplenType");
  734. Dictionary<string,object> tmpMetals = QueryDataClient.Instance.Service.PollData(_rtDataKeys);
  735. if (tmpMetals != null)
  736. {
  737. string replenType = CommonFunction.GetValue<string>(tmpMetals, $"{Module}.ReplenType");
  738. IsDosingSystemEnabled = replenType != "" ? true : false;
  739. List<string> strMetals = CommonFunction.GetValue<List<string>>(tmpMetals, $"{Module}.Metals");
  740. CellsCount = strMetals.Count;
  741. if(strMetals!=null&& CellsCount>= 1)
  742. {
  743. CellModuleNameCollection.Clear();
  744. MetalDataCollection.Clear();
  745. CellModuleSignalPump.Clear();
  746. for (int i = 0; i < CellsCount; i++)
  747. {
  748. string metal=strMetals[i];
  749. if (!string.IsNullOrEmpty(metal))
  750. {
  751. CellModuleNameCollection.Add(metal);
  752. _rtDataKeys.Add($"{metal}.MetalData");
  753. _rtDataKeys.Add($"{metal}.IsSingalPump");
  754. }
  755. MetalDataCollection.Add(new StandardHotMetalDeviceData());
  756. CellModuleSignalPump.Add(false);
  757. }
  758. }
  759. }
  760. _rtDataKeys.Add($"{Module}.ReservoirData");
  761. _rtDataKeys.Add($"{Module}.PersistentValue");
  762. _rtDataKeys.Add($"{Module}.IsManualReplen");
  763. _rtDataKeys.Add($"{Module}.DIValveMaxOnTime");
  764. _rtDataKeys.Add($"{Module}.CurrentRecipe");
  765. _rtDataKeys.Add($"{Module}.TemperatureControllerData");
  766. _rtDataKeys.Add($"{Module}.CmmPowerSupplierData");
  767. _rtDataKeys.Add($"{Module}.FsmState");
  768. _rtDataKeys.Add($"{Module}.ReservoirAverageLevel");
  769. _rtDataKeys.Add($"{Module}.ReservoirUsage");
  770. _rtDataKeys.Add($"{Module}.PumpSpeed");
  771. _rtDataKeys.Add($"{Module}.IsRegulatePump");
  772. _rtDataKeys.Add($"{Module}.IsCMMConfig");
  773. if (_timer == null)
  774. {
  775. _timer = new DispatcherTimer();
  776. _timer.Interval = TimeSpan.FromMilliseconds(200);
  777. _timer.Tick += Timer_Tick;
  778. }
  779. _timer.Start();
  780. //加载Config
  781. _reservoirCMMFlowHighWarning = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMFlowHighWarning"));
  782. _reservoirCMMFlowHighError = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMFlowHighFault"));
  783. _reservoirCMMFlowLowWarning = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMFlowLowWarning"));
  784. _reservoirCMMFlowLowError = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMFlowLowFault"));
  785. CMMAnodeLifeTimeAHrs = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMAnodeLifeTimeAHrs"));
  786. CMMCathodeLifeTimeAHrs = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMCathodeLifeTimeAHrs"));
  787. _reservoirHighLevel = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.HighLevel"));
  788. _reservoirLowLevel = Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.LowLevel"));
  789. _cmmAnodeTotalAmpHoursWarningLimit = (double)Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMAnodeTotalAmpHoursWarningLimit"));
  790. _cmmAnodeTotalAmpHoursFaultLimit = (double)Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMAnodeTotalAmpHoursFaultLimit"));
  791. _cmmCathodeTotalAmpHoursWarningLimit = (double)Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMCathodeTotalAmpHoursWarningLimit"));
  792. _cmmCathodeTotalAmpHoursFaultLimit = (double)Convert.ToDouble(QueryDataClient.Instance.Service.GetConfig($"Reservoir.{Module}.CMMCathodeTotalAmpHoursFaultLimit"));
  793. }
  794. #region 命令方法
  795. /// <summary>
  796. /// 初始化
  797. /// </summary>
  798. /// <param name="param"></param>
  799. private void InitializeAction(object param)
  800. {
  801. InvokeClient.Instance.Service.DoOperation($"{Module}.InitializeAll");
  802. }
  803. /// <summary>
  804. /// 重置TotalTime
  805. /// </summary>
  806. private void ResetTotalAction()
  807. {
  808. InvokeClient.Instance.Service.DoOperation($"{Module}.ResetTotalTime");
  809. }
  810. /// <summary>
  811. /// Cell1三向阀开启CellFlow
  812. /// </summary>
  813. /// <param name="obj"></param>
  814. private void OnCellFlow1(object param)
  815. {
  816. if(CellModuleNameCollection[0] != "")
  817. {
  818. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[0]}.CellSwitchToFlow");
  819. }
  820. }
  821. /// <summary>
  822. /// Cell1三向阀开启CellBypass
  823. /// </summary>
  824. private void OnCellBypass1(object param)
  825. {
  826. if(CellModuleNameCollection[0] != "")
  827. {
  828. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[0]}.CellSwitchToBypass");
  829. }
  830. }
  831. /// <summary>
  832. /// Cell2三向阀开启CellFlow
  833. /// </summary>
  834. /// <param name="obj"></param>
  835. private void OnCellFlow2(object param)
  836. {
  837. if(CellModuleNameCollection[1] != "")
  838. {
  839. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[1]}.CellSwitchToFlow");
  840. }
  841. }
  842. /// <summary>
  843. /// Cell2三向阀开启CellBypass
  844. /// </summary>
  845. private void OnCellBypass2(object param)
  846. {
  847. if (CellModuleNameCollection[1] != "")
  848. {
  849. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[1]}.CellSwitchToBypass");
  850. }
  851. }
  852. /// <summary>
  853. /// Cell1 Open Clamp Valve
  854. /// </summary>
  855. private void OnOpenClampValve1(object param)
  856. {
  857. if (CellModuleNameCollection[0] != "")
  858. {
  859. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[0]}.ClampOn");
  860. }
  861. }
  862. /// <summary>
  863. /// Cell1 Close Clamp Valve
  864. /// </summary>
  865. private void OnCloseClampValve1(object param)
  866. {
  867. if (CellModuleNameCollection[0] != "")
  868. {
  869. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[0]}.ClampOff");
  870. }
  871. }
  872. /// <summary>
  873. /// Cell2 Open Clamp Valve
  874. /// </summary>
  875. private void OnOpenClampValve2(object param)
  876. {
  877. if (CellModuleNameCollection[1] != "")
  878. {
  879. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[1]}.ClampOn");
  880. }
  881. }
  882. /// <summary>
  883. /// Cell2 Close Clamp Valve
  884. /// </summary>
  885. private void OnCloseClampValve2(object param)
  886. {
  887. if (CellModuleNameCollection[1] != "")
  888. {
  889. InvokeClient.Instance.Service.DoOperation($"{CellModuleNameCollection[1]}.ClampOff");
  890. }
  891. }
  892. /// <summary>
  893. /// Open DI Replen Valve
  894. /// </summary>
  895. private void OnOpenDIReplenValve(object param)
  896. {
  897. InvokeClient.Instance.Service.DoOperation($"{Module}.DiReplenOn");
  898. }
  899. /// <summary>
  900. /// Close DI Replen Valve
  901. /// </summary>
  902. private void OnCloseDIReplenValve(object param)
  903. {
  904. InvokeClient.Instance.Service.DoOperation($"{Module}.DiReplenOff");
  905. }
  906. /// <summary>
  907. /// Manual DireplenAction
  908. /// </summary>
  909. /// <param name="param"></param>
  910. private void ManualDireplenAction(object param)
  911. {
  912. InvokeClient.Instance.Service.DoOperation($"{Module}.ManualDiReplen",ManualFillSeconds);
  913. }
  914. /// <summary>
  915. /// 进入PMCounter页面
  916. /// </summary>
  917. /// <param name="param"></param>
  918. private void GotoPMCounterAction(object param)
  919. {
  920. GlobalEvents.OnSwitchFixedChildSubItem(Module, $"PMCounter{Module.Substring(9, 1)}");
  921. }
  922. /// <summary>
  923. /// 跳转DosingSystem
  924. /// </summary>
  925. /// <param name="param"></param>
  926. private void JumpDosingSystemAction(object param)
  927. {
  928. GlobalEvents.OnSwitchFixedChildSubItem(Module, $"DosingSystem1");
  929. }
  930. private void HedPowerOnAction(object param)
  931. {
  932. InvokeClient.Instance.Service.DoOperation($"{Module}.HedPowerOn");
  933. }
  934. private void HedPowerOffAction(object param)
  935. {
  936. InvokeClient.Instance.Service.DoOperation($"{Module}.HedPowerOff");
  937. }
  938. private void ResPowerOnAction(object param)
  939. {
  940. InvokeClient.Instance.Service.DoOperation($"{Module}.ResPowerOn");
  941. }
  942. private void ResPowerOffAction(object param)
  943. {
  944. InvokeClient.Instance.Service.DoOperation($"{Module}.ResPowerOff");
  945. }
  946. /// <summary>
  947. /// Initialize Action
  948. /// </summary>
  949. /// <param name="param"></param>
  950. private void PumpSpeedAction(object obj)
  951. {
  952. object[] objects = (object[])obj;
  953. if (objects.Length >= 2)
  954. {
  955. InvokeClient.Instance.Service.DoOperation($"{Module}.RegulatPumpSpeed", objects[1]);
  956. }
  957. }
  958. #endregion
  959. /// <summary>
  960. /// 时钟
  961. /// </summary>
  962. /// <param name="sender"></param>
  963. /// <param name="e"></param>
  964. private void Timer_Tick(object sender, EventArgs e)
  965. {
  966. if (_rtDataKeys.Count != 0)
  967. {
  968. _rtDataValueDic = QueryDataClient.Instance.Service.PollData(_rtDataKeys);
  969. if (_rtDataValueDic != null)
  970. {
  971. IsCMMConfig = CommonFunction.GetValue<bool>(_rtDataValueDic, $"{Module}.IsCMMConfig");
  972. IsRegulatePump = CommonFunction.GetValue<bool>(_rtDataValueDic, $"{Module}.IsRegulatePump");
  973. PumpSpeed = CommonFunction.GetValue<int>(_rtDataValueDic, $"{Module}.PumpSpeed");
  974. ReservoirsPersistent = CommonFunction.GetValue<ReservoirsPersistentValue>(_rtDataValueDic, $"{Module}.PersistentValue");
  975. IsManualReplen = CommonFunction.GetValue<bool>(_rtDataValueDic, $"{Module}.IsManualReplen");
  976. DIValveMaxOnTime = CommonFunction.GetValue<double>(_rtDataValueDic, $"{Module}.DIValveMaxOnTime");
  977. CurrentRecipe = CommonFunction.GetValue<ResRecipe>(_rtDataValueDic, $"{Module}.CurrentRecipe");
  978. TemperatureControlData = CommonFunction.GetValue<TemperatureControllerData>(_rtDataValueDic, $"{Module}.TemperatureControllerData");
  979. TCEnableStatus = TemperatureControlData.ControlOperationModel == 0 ? "Disable" : "Enable";
  980. CmmPowerSupplierData = CommonFunction.GetValue<PowerSupplierData>(_rtDataValueDic, $"{Module}.CmmPowerSupplierData");
  981. State = CommonFunction.GetValue<string>(_rtDataValueDic, $"{Module}.FsmState");
  982. AvgLevel = CommonFunction.GetValue<double>(_rtDataValueDic, $"{Module}.ReservoirAverageLevel");
  983. ReservoirUsage reservoirUsage = CommonFunction.GetValue<ReservoirUsage>(_rtDataValueDic, $"{Module}.ReservoirUsage");
  984. if(reservoirUsage != null)
  985. {
  986. CMMAnodeUsage = reservoirUsage.CMMAnodeUsage;
  987. CMMCathodeUsage = reservoirUsage.CMMMembranceUsage;
  988. //CMM AnodeUsage
  989. if (CMMAnodeUsage > _cmmAnodeTotalAmpHoursFaultLimit)
  990. {
  991. IsCMMAnodeTotalAmpHoursFault = true;
  992. IsCMMAnodeTotalAmpHoursWarning = false;
  993. }
  994. else if(CMMAnodeUsage > _cmmAnodeTotalAmpHoursWarningLimit)
  995. {
  996. IsCMMAnodeTotalAmpHoursWarning = true;
  997. IsCMMAnodeTotalAmpHoursFault = false;
  998. }
  999. else
  1000. {
  1001. IsCMMAnodeTotalAmpHoursWarning = false;
  1002. IsCMMAnodeTotalAmpHoursFault = false;
  1003. }
  1004. //CMM CathodeUsage
  1005. if (CMMCathodeUsage > _cmmCathodeTotalAmpHoursFaultLimit)
  1006. {
  1007. IsCMMCathodeTotalAmpHoursFault = true;
  1008. IsCMMCathodeTotalAmpHoursWarning = false;
  1009. }
  1010. else if (CMMCathodeUsage > _cmmCathodeTotalAmpHoursWarningLimit)
  1011. {
  1012. IsCMMCathodeTotalAmpHoursWarning = true;
  1013. IsCMMCathodeTotalAmpHoursFault = false;
  1014. }
  1015. else
  1016. {
  1017. IsCMMCathodeTotalAmpHoursWarning = false;
  1018. IsCMMCathodeTotalAmpHoursFault = false;
  1019. }
  1020. }
  1021. if ("Manual".Equals(ReservoirsPersistent.OperatingMode))
  1022. {
  1023. IsEnabled = true;
  1024. IsAutoEnabled = true;
  1025. }
  1026. else if ("Auto".Equals(ReservoirsPersistent.OperatingMode))
  1027. {
  1028. IsAutoEnabled = true;
  1029. IsEnabled = false;
  1030. }
  1031. else
  1032. {
  1033. State = "Stopped";
  1034. IsEnabled = false;
  1035. IsAutoEnabled = false;
  1036. }
  1037. for (int i = 0;i < CellsCount;i++)
  1038. {
  1039. MetalDataCollection[i] = CommonFunction.GetValue<StandardHotMetalDeviceData>(_rtDataValueDic, $"{CellModuleNameCollection[i]}.MetalData");
  1040. CellModuleSignalPump[i] = CommonFunction.GetValue<bool>(_rtDataValueDic, $"{CellModuleNameCollection[i]}.IsSingalPump");
  1041. }
  1042. ReservoirData = CommonFunction.GetValue<StandardHotReservoirData>(_rtDataValueDic, $"{Module}.ReservoirData");
  1043. if (ReservoirData != null)
  1044. {
  1045. for (int i = 0; i < CellsCount; i++)
  1046. {
  1047. MetalDataCollection[i].CellPump ^= ReservoirData.RegulatePumpSignalIn; //确保管路开关正常显示
  1048. }
  1049. }
  1050. if (CurrentRecipe != null)
  1051. {
  1052. //PHLow报警灯
  1053. IsPHLowLimit = (ReservoirData != null && ReservoirData.PHValue < CurrentRecipe.PHErrorLow) ? true : false;
  1054. //PHHigh报警灯
  1055. IsPHHighLimit = (ReservoirData != null && ReservoirData.PHValue > CurrentRecipe.PHErrorHigh) ? true : false;
  1056. if(CmmPowerSupplierData != null)
  1057. {
  1058. //PowerSupply High报警灯
  1059. if (CmmPowerSupplierData.Current <= CurrentRecipe.CMMCurrentSetPoint * (1 + (double)CurrentRecipe.CMMCurrentWarningPercent/100))
  1060. {
  1061. CurrentHighStatus = "Normal";
  1062. }
  1063. else if (CmmPowerSupplierData.Current > CurrentRecipe.CMMCurrentSetPoint * (1 + (double)CurrentRecipe.CMMCurrentFaultPercent/100))
  1064. {
  1065. CurrentHighStatus = "Error";
  1066. }
  1067. else
  1068. {
  1069. CurrentHighStatus = "Warning";
  1070. }
  1071. //PowerSupply Low报警灯
  1072. if (CmmPowerSupplierData.Current >= CurrentRecipe.CMMCurrentSetPoint * (1 - (double)CurrentRecipe.CMMCurrentWarningPercent/100))
  1073. {
  1074. CurrentLowStatus = "Normal";
  1075. }
  1076. else if (CmmPowerSupplierData.Current < CurrentRecipe.CMMCurrentSetPoint * (1 - (double)CurrentRecipe.CMMCurrentFaultPercent/100))
  1077. {
  1078. CurrentLowStatus = "Error";
  1079. }
  1080. else
  1081. {
  1082. CurrentLowStatus = "Warning";
  1083. }
  1084. IsBelowMinVoltage = CmmPowerSupplierData.Voltage < CurrentRecipe.CMMMinVoltage ? true : false;
  1085. }
  1086. }
  1087. if (ReservoirData != null)
  1088. {
  1089. //CMM Flow High报警灯
  1090. if (ReservoirData.Flow <= _reservoirCMMFlowHighWarning)
  1091. {
  1092. FlowHighStatus = "Normal";
  1093. }
  1094. else if (ReservoirData.Flow > _reservoirCMMFlowHighError)
  1095. {
  1096. FlowHighStatus = "Error";
  1097. }
  1098. else
  1099. {
  1100. FlowHighStatus = "Warning";
  1101. }
  1102. //CMM Flow Low报警灯
  1103. if (ReservoirData.Flow >= _reservoirCMMFlowLowWarning)
  1104. {
  1105. FlowLowStatus = "Normal";
  1106. }
  1107. else if (ReservoirData.Flow < _reservoirCMMFlowLowError)
  1108. {
  1109. FlowLowStatus = "Error";
  1110. }
  1111. else
  1112. {
  1113. FlowLowStatus = "Warning";
  1114. }
  1115. //High Level报警灯
  1116. IsHighLevel = (ReservoirData.WaterLevel > _reservoirHighLevel) ? true : false;
  1117. //Low Level报警灯
  1118. IsLowLevel = (ReservoirData.WaterLevel < _reservoirLowLevel) ? true : false;
  1119. //HighSafety
  1120. IsHighSafety = ReservoirData.SafetyHighLevel;
  1121. //HedFlow管流
  1122. HEDFlowIsOn = (ReservoirData.HedFlow > 0) ? true : false;
  1123. //DIReplenFault
  1124. IsDiReplenFault = false;
  1125. IsError = State== "Error" ? true : false;
  1126. }
  1127. }
  1128. }
  1129. }
  1130. /// <summary>
  1131. /// 隐藏
  1132. /// </summary>
  1133. public void Hide()
  1134. {
  1135. if (_timer != null)
  1136. {
  1137. _timer.Stop();
  1138. }
  1139. }
  1140. }
  1141. }