GroupTextBoxControlDouble.xaml.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. using System.Windows;
  2. using System.Windows.Controls;
  3. using System.Windows.Media;
  4. namespace CyberX8_Themes.UserControls
  5. {
  6. /// <summary>
  7. /// GroupTextBoxControlDouble.xaml 的交互逻辑
  8. /// </summary>
  9. public partial class GroupTextBoxControlDouble : UserControl
  10. {
  11. #region 属性
  12. public static readonly DependencyProperty TitleProperty = DependencyProperty.Register("Title", typeof(string), typeof(GroupTextBoxControlDouble),
  13. new FrameworkPropertyMetadata("", FrameworkPropertyMetadataOptions.AffectsRender));
  14. /// <summary>
  15. /// 标题
  16. /// </summary>
  17. public string Title
  18. {
  19. get
  20. {
  21. return (string)this.GetValue(TitleProperty);
  22. }
  23. set
  24. {
  25. this.SetValue(TitleProperty, value);
  26. }
  27. }
  28. public static readonly DependencyProperty UnitProperty = DependencyProperty.Register("Unit", typeof(string), typeof(GroupTextBoxControlDouble),
  29. new FrameworkPropertyMetadata("deg", FrameworkPropertyMetadataOptions.AffectsRender));
  30. /// <summary>
  31. /// 单位
  32. /// </summary>
  33. public string Unit
  34. {
  35. get
  36. {
  37. return (string)this.GetValue(UnitProperty);
  38. }
  39. set
  40. {
  41. this.SetValue(UnitProperty, value);
  42. }
  43. }
  44. public static readonly DependencyProperty DoubleValueProperty = DependencyProperty.Register("DoubleValue", typeof(double), typeof(GroupTextBoxControlDouble),
  45. new PropertyMetadata(-1.0, new PropertyChangedCallback(DoubleValueChanged)));
  46. /// <summary>
  47. /// 数值
  48. /// </summary>
  49. public double DoubleValue
  50. {
  51. get
  52. {
  53. return (double)this.GetValue(DoubleValueProperty);
  54. }
  55. set
  56. {
  57. this.SetValue(DoubleValueProperty, value);
  58. }
  59. }
  60. public static readonly DependencyProperty MinValueProperty = DependencyProperty.Register("MinValue", typeof(double), typeof(GroupTextBoxControlDouble),
  61. new FrameworkPropertyMetadata(0.0, FrameworkPropertyMetadataOptions.AffectsRender));
  62. /// <summary>
  63. /// 最小数值
  64. /// </summary>
  65. public double MinValue
  66. {
  67. get
  68. {
  69. return (double)this.GetValue(MinValueProperty);
  70. }
  71. set
  72. {
  73. this.SetValue(MinValueProperty, value);
  74. }
  75. }
  76. public static readonly DependencyProperty MaxValueProperty = DependencyProperty.Register("MaxValue", typeof(double), typeof(GroupTextBoxControlDouble),
  77. new FrameworkPropertyMetadata(0.0, FrameworkPropertyMetadataOptions.AffectsRender));
  78. /// <summary>
  79. /// 最大数值
  80. /// </summary>
  81. public double MaxValue
  82. {
  83. get
  84. {
  85. return (double)this.GetValue(MaxValueProperty);
  86. }
  87. set
  88. {
  89. this.SetValue(MaxValueProperty, value);
  90. }
  91. }
  92. public static readonly DependencyProperty EnableProperty = DependencyProperty.Register("Enable", typeof(bool), typeof(GroupTextBoxControlDouble),
  93. new FrameworkPropertyMetadata(true, FrameworkPropertyMetadataOptions.AffectsRender));
  94. /// <summary>
  95. /// 可用性
  96. /// </summary>
  97. public bool Enable
  98. {
  99. get
  100. {
  101. return (bool)this.GetValue(EnableProperty);
  102. }
  103. set
  104. {
  105. this.SetValue(EnableProperty, value);
  106. }
  107. }
  108. public static readonly DependencyProperty ValidResultProperty = DependencyProperty.Register("ValidResult", typeof(bool), typeof(GroupTextBoxControlDouble),
  109. new FrameworkPropertyMetadata(true, FrameworkPropertyMetadataOptions.AffectsRender));
  110. /// <summary>
  111. /// 合理性
  112. /// </summary>
  113. public bool ValidResult
  114. {
  115. get
  116. {
  117. return (bool)this.GetValue(ValidResultProperty);
  118. }
  119. set
  120. {
  121. this.SetValue(ValidResultProperty, value);
  122. }
  123. }
  124. /// <summary>
  125. /// 数值发生变化事件
  126. /// </summary>
  127. /// <param name="d"></param>
  128. /// <param name="e"></param>
  129. private static void DoubleValueChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
  130. {
  131. if (e.NewValue != null)
  132. {
  133. double newValue = (double)e.NewValue;
  134. double minValue = (double)d.GetValue(MinValueProperty);
  135. double maxValue = (double)d.GetValue(MaxValueProperty);
  136. bool validResult = newValue >= minValue && newValue <= maxValue;
  137. d.SetValue(ValidResultProperty, validResult);
  138. }
  139. }
  140. #endregion
  141. public GroupTextBoxControlDouble()
  142. {
  143. InitializeComponent();
  144. }
  145. protected override void OnRender(DrawingContext drawingContext)
  146. {
  147. base.OnRender(drawingContext);
  148. ValidResult = DoubleValue >= MinValue && DoubleValue <= MaxValue;
  149. RectangleSetPoint.Fill = ValidResult ? new SolidColorBrush(Colors.Transparent) : new SolidColorBrush(Colors.Yellow);
  150. txtValue.Background = ValidResult ? new SolidColorBrush(Colors.Transparent) : new SolidColorBrush(Colors.Yellow);
  151. }
  152. }
  153. }