OperatingModeControl.xaml.cs 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. using Aitex.Core.UI.MVVM;
  2. using Aitex.Core.Utilities;
  3. using MECF.Framework.Common.Equipment;
  4. using MECF.Framework.Common.OperationCenter;
  5. using MECF.Framework.Common.Persistent.Prewet;
  6. using MECF.Framework.Common.Persistent.SRD;
  7. using Microsoft.Win32;
  8. using System;
  9. using System.Collections.Generic;
  10. using System.Diagnostics;
  11. using System.Linq;
  12. using System.Reflection;
  13. using System.Text;
  14. using System.Threading.Tasks;
  15. using System.Windows;
  16. using System.Windows.Controls;
  17. using System.Windows.Data;
  18. using System.Windows.Documents;
  19. using System.Windows.Input;
  20. using System.Windows.Media;
  21. using System.Windows.Media.Imaging;
  22. using System.Windows.Navigation;
  23. using System.Windows.Shapes;
  24. namespace CyberX8_Themes.UserControls
  25. {
  26. /// <summary>
  27. /// OperatingModeControl.xaml 的交互逻辑
  28. /// </summary>
  29. public partial class OperatingModeControl : UserControl
  30. {
  31. public OperatingModeControl()
  32. {
  33. InitializeComponent();
  34. }
  35. public static readonly DependencyProperty ModuleNameProperty = DependencyProperty.Register(
  36. "ModuleName", typeof(string), typeof(OperatingModeControl), new FrameworkPropertyMetadata("", FrameworkPropertyMetadataOptions.AffectsRender));
  37. /// <summary>
  38. /// 模块名称
  39. /// </summary>
  40. public string ModuleName
  41. {
  42. get
  43. {
  44. return (string)this.GetValue(ModuleNameProperty);
  45. }
  46. set
  47. {
  48. this.SetValue(ModuleNameProperty, value);
  49. }
  50. }
  51. public static readonly DependencyProperty SubModuleNameProperty = DependencyProperty.Register(
  52. "SubModuleName", typeof(string), typeof(OperatingModeControl), new FrameworkPropertyMetadata("", FrameworkPropertyMetadataOptions.AffectsRender));
  53. /// <summary>
  54. /// SubModuleName
  55. /// </summary>
  56. public string SubModuleName
  57. {
  58. get
  59. {
  60. return (string)this.GetValue(SubModuleNameProperty);
  61. }
  62. set
  63. {
  64. this.SetValue(SubModuleNameProperty, value);
  65. }
  66. }
  67. public static readonly DependencyProperty IsDisabledProperty = DependencyProperty.Register(
  68. "IsDisabled", typeof(bool), typeof(OperatingModeControl), new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender));
  69. /// <summary>
  70. /// IsDisabled
  71. /// </summary>
  72. public bool IsDisabled
  73. {
  74. get
  75. {
  76. return (bool)this.GetValue(IsDisabledProperty);
  77. }
  78. set
  79. {
  80. this.SetValue(IsDisabledProperty, value);
  81. }
  82. }
  83. public static readonly DependencyProperty IsManualProperty = DependencyProperty.Register(
  84. "IsManual", typeof(bool), typeof(OperatingModeControl), new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender));
  85. /// <summary>
  86. /// IsManual
  87. /// </summary>
  88. public bool IsManual
  89. {
  90. get
  91. {
  92. return (bool)this.GetValue(IsManualProperty);
  93. }
  94. set
  95. {
  96. this.SetValue(IsManualProperty, value);
  97. }
  98. }
  99. public static readonly DependencyProperty IsAutoProperty = DependencyProperty.Register(
  100. "IsAuto", typeof(bool), typeof(OperatingModeControl), new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender));
  101. /// <summary>
  102. /// IsAuto
  103. /// </summary>
  104. public bool IsAuto
  105. {
  106. get
  107. {
  108. return (bool)this.GetValue(IsAutoProperty);
  109. }
  110. set
  111. {
  112. this.SetValue(IsAutoProperty, value);
  113. }
  114. }
  115. public static readonly DependencyProperty OperationModeValueProperty = DependencyProperty.Register(
  116. "OperationModeValue", typeof(string), typeof(OperatingModeControl), new FrameworkPropertyMetadata(null, new PropertyChangedCallback(OnItemsSourceChanged)));
  117. /// <summary>
  118. /// OpertationModeValue
  119. /// </summary>
  120. public string OperationModeValue
  121. {
  122. get
  123. {
  124. return (string)this.GetValue(OperationModeValueProperty);
  125. }
  126. set
  127. {
  128. this.SetValue(OperationModeValueProperty, value);
  129. }
  130. }
  131. private static void OnItemsSourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
  132. {
  133. string moduleName = (string)d.GetValue(ModuleNameProperty);
  134. OperatingModeControl control = (OperatingModeControl)d;
  135. if (e.NewValue != null)
  136. {
  137. string currentMode = (string)e.NewValue;
  138. switch (currentMode)
  139. {
  140. case "Disabled":
  141. d.SetValue(IsDisabledProperty, true);
  142. d.SetValue(IsManualProperty, false);
  143. d.SetValue(IsAutoProperty, false); break;
  144. case "Manual":
  145. d.SetValue(IsDisabledProperty, false);
  146. d.SetValue(IsManualProperty, true);
  147. d.SetValue(IsAutoProperty, false); break;
  148. case "Auto":
  149. d.SetValue(IsDisabledProperty, false);
  150. d.SetValue(IsManualProperty, false);
  151. d.SetValue(IsAutoProperty, true); break;
  152. default:
  153. break;
  154. }
  155. }
  156. }
  157. private void Disabled_Click(object sender, RoutedEventArgs e)
  158. {
  159. if (SubModuleName == "DosingSystem")
  160. {
  161. InvokeClient.Instance.Service.DoOperation($"{ModuleName}.DisabledAction", true);
  162. }
  163. else
  164. {
  165. InvokeClient.Instance.Service.DoOperation($"{ModuleName}.DisabledAction");
  166. }
  167. }
  168. private void Manual_Click(object sender, RoutedEventArgs e)
  169. {
  170. if(SubModuleName == "DosingSystem")
  171. {
  172. InvokeClient.Instance.Service.DoOperation($"{ModuleName}.ManualAction", true);
  173. }
  174. else
  175. {
  176. InvokeClient.Instance.Service.DoOperation($"{ModuleName}.ManualAction");
  177. }
  178. }
  179. private void Automatic_Click(object sender, RoutedEventArgs e)
  180. {
  181. if (SubModuleName == "DosingSystem")
  182. {
  183. InvokeClient.Instance.Service.DoOperation($"{ModuleName}.AutoAction", true);
  184. }
  185. else
  186. {
  187. InvokeClient.Instance.Service.DoOperation($"{ModuleName}.AutoAction");
  188. }
  189. }
  190. }
  191. }