DoubleTextBox.xaml.cs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Navigation;
  15. using System.Windows.Shapes;
  16. namespace MECF.Framework.UI.Core.Control
  17. {
  18. /// <summary>
  19. /// DoubleTextBox.xaml 的交互逻辑
  20. /// </summary>
  21. public partial class DoubleTextBox : UserControl
  22. {
  23. #region 属性
  24. public static readonly DependencyProperty ValueProperty = DependencyProperty.Register(
  25. "Value", typeof(double), typeof(DoubleTextBox), new FrameworkPropertyMetadata(0.0, FrameworkPropertyMetadataOptions.AffectsRender));
  26. /// <summary>
  27. /// 数值
  28. /// </summary>
  29. public double Value
  30. {
  31. get
  32. {
  33. return (double)this.GetValue(ValueProperty);
  34. }
  35. set
  36. {
  37. this.SetValue(ValueProperty, value);
  38. }
  39. }
  40. public static readonly DependencyProperty TextboxNameProperty = DependencyProperty.Register(
  41. "TextboxName", typeof(string), typeof(DoubleTextBox), new FrameworkPropertyMetadata("", FrameworkPropertyMetadataOptions.AffectsRender));
  42. /// <summary>
  43. /// 名称
  44. /// </summary>
  45. public string TextboxName
  46. {
  47. get
  48. {
  49. return (string)this.GetValue(TextboxNameProperty);
  50. }
  51. set
  52. {
  53. this.SetValue(TextboxNameProperty, value);
  54. }
  55. }
  56. public static readonly DependencyProperty KeyOperationProperty = DependencyProperty.Register("KeyOperation", typeof(ICommand), typeof(DoubleTextBox));
  57. public ICommand KeyOperation
  58. {
  59. get
  60. {
  61. return (ICommand)this.GetValue(KeyOperationProperty);
  62. }
  63. set
  64. {
  65. this.SetValue(KeyOperationProperty, value);
  66. }
  67. }
  68. #endregion
  69. /// <summary>
  70. /// 构造函数
  71. /// </summary>
  72. public DoubleTextBox()
  73. {
  74. InitializeComponent();
  75. }
  76. private void OnPreviewTextInput(object sender, TextCompositionEventArgs e)
  77. {
  78. e.Handled = !IsTextAllowed(e.Text, ((TextBox)sender).Text);
  79. }
  80. private bool IsTextAllowed(string key, string text)
  81. {
  82. Regex regex = new Regex(@"[^0-9\.]+$"); //regex that matches disallowed text
  83. bool result = !regex.IsMatch(key);
  84. return result;
  85. }
  86. private void txtInput_KeyDown(object sender, KeyEventArgs e)
  87. {
  88. if (e.Key == Key.Enter)
  89. {
  90. if (KeyOperation != null)
  91. {
  92. KeyOperation.Execute(new object[] { TextboxName, txtInput.Text });
  93. }
  94. }
  95. }
  96. }
  97. }