PufChuckControl.xaml.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. using MECF.Framework.Common.OperationCenter;
  2. using CyberX8_Core;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Windows;
  9. using System.Windows.Controls;
  10. using System.Windows.Data;
  11. using System.Windows.Documents;
  12. using System.Windows.Input;
  13. using System.Windows.Media;
  14. using System.Windows.Media.Imaging;
  15. using System.Windows.Navigation;
  16. using System.Windows.Shapes;
  17. namespace CyberX8_Themes.UserControls
  18. {
  19. /// <summary>
  20. /// PufChuckControl.xaml 的交互逻辑
  21. /// </summary>
  22. public partial class PufChuckControl : UserControl
  23. {
  24. public PufChuckControl()
  25. {
  26. InitializeComponent();
  27. }
  28. public static readonly DependencyProperty ModuleNameProperty = DependencyProperty.Register("ModuleName", typeof(string), typeof(PufChuckControl));
  29. /// <summary>
  30. /// ModuleName
  31. /// </summary>
  32. public string ModuleName
  33. {
  34. get
  35. {
  36. return (string)this.GetValue(ModuleNameProperty);
  37. }
  38. set
  39. {
  40. this.SetValue(ModuleNameProperty, value);
  41. }
  42. }
  43. public static readonly DependencyProperty ChuckProperty = DependencyProperty.Register( "Chuck", typeof(bool), typeof(PufChuckControl));
  44. /// <summary>
  45. /// Chuck
  46. /// </summary>
  47. public bool Chuck
  48. {
  49. get
  50. {
  51. return (bool)this.GetValue(ChuckProperty);
  52. }
  53. set
  54. {
  55. this.SetValue(ChuckProperty, value);
  56. }
  57. }
  58. public static readonly DependencyProperty SideAChuckOutProperty = DependencyProperty.Register("SideAChuckOut", typeof(bool), typeof(PufChuckControl));
  59. /// <summary>
  60. /// SideAChuckOut
  61. /// </summary>
  62. public bool SideAChuckOut
  63. {
  64. get
  65. {
  66. return (bool)this.GetValue(SideAChuckOutProperty);
  67. }
  68. set
  69. {
  70. this.SetValue(SideAChuckOutProperty, value);
  71. }
  72. }
  73. public static readonly DependencyProperty SideBChuckOutProperty = DependencyProperty.Register("SideBChuckOut", typeof(bool), typeof(PufChuckControl));
  74. /// <summary>
  75. /// SideBChuckOut
  76. /// </summary>
  77. public bool SideBChuckOut
  78. {
  79. get
  80. {
  81. return (bool)this.GetValue(SideBChuckOutProperty);
  82. }
  83. set
  84. {
  85. this.SetValue(SideBChuckOutProperty, value);
  86. }
  87. }
  88. public static readonly DependencyProperty SideAChuckInProperty = DependencyProperty.Register("SideAChuckIn", typeof(bool), typeof(PufChuckControl));
  89. /// <summary>
  90. /// SideAChuckIn
  91. /// </summary>
  92. public bool SideAChuckIn
  93. {
  94. get
  95. {
  96. return (bool)this.GetValue(SideAChuckInProperty);
  97. }
  98. set
  99. {
  100. this.SetValue(SideAChuckInProperty, value);
  101. }
  102. }
  103. public static readonly DependencyProperty SideBChuckInProperty = DependencyProperty.Register("SideBChuckIn", typeof(bool), typeof(PufChuckControl));
  104. /// <summary>
  105. /// SideBChuckIn
  106. /// </summary>
  107. public bool SideBChuckIn
  108. {
  109. get
  110. {
  111. return (bool)this.GetValue(SideBChuckInProperty);
  112. }
  113. set
  114. {
  115. this.SetValue(SideBChuckInProperty, value);
  116. }
  117. }
  118. private void ChuckOn_Click(object sender, RoutedEventArgs e)
  119. {
  120. InvokeClient.Instance.Service.DoOperation($"{ModuleName}.ChuckOn");
  121. }
  122. private void ChuckOff_Click(object sender, RoutedEventArgs e)
  123. {
  124. InvokeClient.Instance.Service.DoOperation($"{ModuleName}.ChuckOff");
  125. }
  126. }
  127. }