numTextbox.xaml.cs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Runtime.CompilerServices;
  5. using System.Text;
  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 WpfControlLibrary.NumbericTextbox
  17. {
  18. /// <summary>
  19. /// numTextbox.xaml 的交互逻辑
  20. /// </summary>
  21. public partial class numTextbox : UserControl
  22. {
  23. public numTextbox()
  24. {
  25. InitializeComponent();
  26. }
  27. // 定义依赖属性
  28. public static readonly DependencyProperty CustomTextProperty =
  29. DependencyProperty.Register(
  30. "CustomText",
  31. typeof(string),
  32. typeof(numTextbox),
  33. new PropertyMetadata(default(string), OnCustomTextChanged)
  34. );
  35. private static void OnCustomTextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
  36. {
  37. var control = d as numTextbox;
  38. if ( control.Textbox.Text != e.NewValue.ToString() )
  39. {
  40. control.Textbox.Text = e.NewValue.ToString(); // 同步到控件内部属性
  41. }
  42. }
  43. // CLR 属性包装器
  44. public string CustomText
  45. {
  46. get { return ( string ) GetValue(CustomTextProperty); }
  47. set { SetValue(CustomTextProperty, value); }
  48. }
  49. private void TextBox_KeyDown(object sender, KeyEventArgs e)
  50. {
  51. TextBox txt = sender as TextBox;
  52. //屏蔽非法按键
  53. if ( ( e.Key >= Key.NumPad0 && e.Key <= Key.NumPad9 ) || e.Key == Key.Decimal )
  54. {
  55. if ( txt.Text.Contains(".") && e.Key == Key.Decimal )
  56. {
  57. e.Handled = true;
  58. return;
  59. }
  60. e.Handled = false;
  61. }
  62. else if ( ( ( e.Key >= Key.D0 && e.Key <= Key.D9 ) || e.Key == Key.OemPeriod ) && e.KeyboardDevice.Modifiers != ModifierKeys.Shift )
  63. {
  64. if ( txt.Text.Contains(".") && e.Key == Key.OemPeriod )
  65. {
  66. e.Handled = true;
  67. return;
  68. }
  69. e.Handled = false;
  70. }
  71. else
  72. {
  73. e.Handled = true;
  74. }
  75. }
  76. private void TextBox_TextChanged(object sender, TextChangedEventArgs e)
  77. {
  78. //屏蔽中文输入和非法字符粘贴输入
  79. TextBox textBox = sender as TextBox;
  80. TextChange[] change = new TextChange[e.Changes.Count];
  81. e.Changes.CopyTo(change, 0);
  82. int offset = change[0].Offset;
  83. if ( change[ 0 ].AddedLength > 0 )
  84. {
  85. double num = 0;
  86. if ( !Double.TryParse(textBox.Text, out num) )
  87. {
  88. textBox.Text = textBox.Text.Remove(offset, change[ 0 ].AddedLength);
  89. textBox.Select(offset, 0);
  90. }
  91. }
  92. CustomText = textBox.Text;
  93. }
  94. }
  95. }