`
congfeng02
  • 浏览: 203621 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

C#中只接受数字输入的控件

阅读更多

C#中只接受数字输入的控件

关键字: numeric textbox
在MFC里需要获取文本输入时,经常会用到CEdit或者它的子类。可以通过设置它的Edit Control Styles来控制Edit控件的一些行为,例如说设置ES_NUMBER标识使控件只允许接受数字(虽然可以复制-粘贴非数字字符串到这个控件中)。

在.NET中,用于获取文本输入的控件是TextBox,但TextBox本身并不包含可以直接调用的方法或属性来将其设置为只接受数字输入。这个问题有好几种方法来解决:
  • 继承TextBox并覆盖其CreateParams属性,对该属性的Style成员添加ES_NUMBER标识;
  • 这个方法与MFC中用Edit Control Styles来初始化CEdit一样。可以说是最偷懒的方法。
  • 自行监听TextBox的KeyDown事件,实现输入验证(但不保证复制-粘贴输入的正确性);
  • 其实设置ES_NUMBER做的也是这件事,如果要实现的功能与Windows控件中默认的一样的话没必要自己监听KeyDown事件;如果需要些额外的功能,例如说允许输入负数、十六进制数等默认没有的功能时,则监听KeyDown事件是个有效的方式。
  • 使用第三方编写的继承自TextBox的控件;
  • 这是拥有“不重复发明轮子”精神的人们的做法。既然获取数字输入应该是个常见问题,之前也肯定有人解决过,那么利用别人的解决方案就行。
    光是CodeProject上就有好几个与这个相关的实现:
    Validating Edit Controls。包括了NumericTextBox、AlphanumericTextBox、DateTextBox等许多版本的TextBox子类。值得一看。
    A numeric textbox with a twist
    Numeric TextBox : Allow your users to enter numeric data the easy way
  • 使用MaskedTextBox控件;
  • 这是.NET Framework自带的一个TextBox的子类,实现了一个带过滤功能的TextBox,可以自定义接受的输入内容的格式。只要设置其stringMask属性即可。如果觉得ES_NUMBER的功能不够用,而自行监听KeyDown事件来做验证不够优雅的话,这个MaskedTextBox绝对是值得考虑的选择。例如说,要接受0到999999的数字,只要把Mask属性设为"999,999.00"就行(意味着六位的可选十进制数字,一个小数点,和两位必须输入的小数)。MSDN上对这个控件有个简单的walkthrough
  • 使用NumericUpDown控件。
  • 当需要获取简单数字输入时,在.NET世界中最直接的方法不是去想办法与TextBox搏斗,而应该换个控件来用——NumericUpDown。这个控件不但能接受来自键盘的数字输入,还有一组上下箭头来步进。它包含了许多可以设置的属性,例如显示分隔符逗号的boolThousandsSeparator、控制最小/最大值的decimalMinimum/decimalMaximum属性等。


下面对这几种解决方法的其中一些稍微讨论一下。

=========================================================================================

一、继承TextBox并覆盖其CreateParams属性

使用这种方法的NumericTextBox的实现(代码的第1-12行)及用例:
C#代码<embed type="application/x-shockwave-flash" width="14" height="15" src="http://rednaxelafx.iteye.com/javascripts/syntaxhighlighter/clipboard_new.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" allowscriptaccess="always" quality="high" flashvars="clipboard=public%20class%20NumericTextBox%20%3A%20System.Windows.Forms.TextBox%0A%7B%0A%20%20%20%20private%20const%20int%20ES_NUMBER%20%3D%200x2000%3B%20%2F%2F%20(%20defined%20in%20WinUser.h%20)%0A%20%20%20%20%0A%20%20%20%20protected%20override%20System.Windows.Forms.CreateParams%20CreateParams%20%7B%0A%20%20%20%20%20%20%20%20get%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20System.Windows.Forms.CreateParams%20cp%20%3D%20base.CreateParams%3B%20%20%20%20%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20cp.Style%20%7C%3D%20ES_NUMBER%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20return%20cp%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%7D%0A%0A%23region%20use%20case%20code%20sample%0A%0Asealed%20class%20TestForm%20%3A%20System.Windows.Forms.Form%0A%7B%0A%20%20%20%20private%20NumericTextBox%20m_ntxt%3B%0A%20%20%20%20%0A%20%20%20%20public%20TestForm()%20%7B%0A%20%20%20%20%20%20%20%20InitializeComponent()%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20private%20void%20InitializeComponent()%20%7B%0A%20%20%20%20%20%20%20%20this.m_ntxt%20%3D%20new%20NumericTextBox()%3B%0A%20%20%20%20%20%20%20%20this.m_ntxt.Dock%20%3D%20System.Windows.Forms.DockStyle.Fill%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20this.ClientSize%20%3D%20new%20System.Drawing.Size(100%2C%2060)%3B%0A%20%20%20%20%20%20%20%20this.Controls.Add(this.m_ntxt)%3B%0A%20%20%20%20%20%20%20%20this.PerformLayout()%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20%5BSystem.STAThread%5D%0A%20%20%20%20static%20void%20Main(string%5B%5D%20args)%20%7B%0A%20%20%20%20%20%20%20%20System.Windows.Forms.Application.EnableVisualStyles()%3B%0A%20%20%20%20%20%20%20%20System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false)%3B%0A%20%20%20%20%20%20%20%20System.Windows.Forms.Application.Run(new%20TestForm())%3B%0A%20%20%20%20%7D%0A%7D%0A%0A%23endregion"></embed>
  1. publicclassNumericTextBox:System.Windows.Forms.TextBox
  2. {
  3. privateconstintES_NUMBER=0x2000;//(definedinWinUser.h)
  4. protectedoverrideSystem.Windows.Forms.CreateParamsCreateParams{
  5. get{
  6. System.Windows.Forms.CreateParamscp=base.CreateParams;
  7. cp.Style|=ES_NUMBER;
  8. returncp;
  9. }
  10. }
  11. }
  12. #regionusecasecodesample
  13. sealedclassTestForm:System.Windows.Forms.Form
  14. {
  15. privateNumericTextBoxm_ntxt;
  16. publicTestForm(){
  17. InitializeComponent();
  18. }
  19. privatevoidInitializeComponent(){
  20. this.m_ntxt=newNumericTextBox();
  21. this.m_ntxt.Dock=System.Windows.Forms.DockStyle.Fill;
  22. this.ClientSize=newSystem.Drawing.Size(100,60);
  23. this.Controls.Add(this.m_ntxt);
  24. this.PerformLayout();
  25. }
  26. [System.STAThread]
  27. staticvoidMain(string[]args){
  28. System.Windows.Forms.Application.EnableVisualStyles();
  29. System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);
  30. System.Windows.Forms.Application.Run(newTestForm());
  31. }
  32. }
  33. #endregion


运行程序,在输入任意非0-9的字符时的样子:

(截图反映的是在我的简体中文Windows XP上的运行效果;若系统语言不是简体中文的话会根据系统语言而不同)

如果这个文本框已经能满足需求,就没必要自己监听KeyDown事件那么麻烦了。

=========================================================================================

二、自行监听KeyDown事件

可以参考CodeProject上Numeric TextBox : Allow your users to enter numeric data the easy way的实现方式。基本原理就是在KeyDown的响应方法中对e.KeyCode进行判断,如果输入不满足条件则设置某个标识,然后再KeyPress的响应方法里设置e.Handled =true;来取消该次事件。

最简单来说类似这样:
C#代码<embed type="application/x-shockwave-flash" width="14" height="15" src="http://rednaxelafx.iteye.com/javascripts/syntaxhighlighter/clipboard_new.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" allowscriptaccess="always" quality="high" flashvars="clipboard=using%20System%3B%0Ausing%20System.Drawing%3B%0Ausing%20System.Windows.Forms%3B%0A%0Asealed%20class%20TestForm%20%3A%20Form%0A%7B%0A%20%20%20%20private%20TextBox%20m_textBox%3B%0A%20%20%20%20private%20bool%20m_nonNumberEntered%20%3D%20false%3B%0A%20%20%20%20%0A%20%20%20%20public%20TestForm()%20%7B%0A%20%20%20%20%20%20%20%20InitializeComponent()%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20private%20void%20InitializeComponent()%20%7B%0A%20%20%20%20%20%20%20%20this.m_textBox%20%3D%20new%20TextBox()%3B%0A%20%20%20%20%20%20%20%20this.m_textBox.Dock%20%3D%20DockStyle.Fill%3B%0A%20%20%20%20%20%20%20%20this.m_textBox.KeyDown%20%2B%3D%20m_textBox_KeyDown%3B%0A%20%20%20%20%20%20%20%20this.m_textBox.KeyPress%20%2B%3D%20m_textBox_KeyPress%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20this.ClientSize%20%3D%20new%20Size(100%2C%2060)%3B%0A%20%20%20%20%20%20%20%20this.Controls.Add(this.m_textBox)%3B%0A%20%20%20%20%20%20%20%20this.PerformLayout()%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20private%20void%20m_textBox_KeyDown(object%20sender%2C%20KeyEventArgs%20e)%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20Initialize%20the%20flag%20to%20false.%0A%20%20%20%20%20%20%20%20m_nonNumberEntered%20%3D%20false%3B%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%2F%2F%20Determine%20whether%20the%20keystroke%20is%20a%20number%20from%20the%20top%20of%20the%20keyboard.%0A%20%20%20%20%20%20%20%20if%20(e.KeyCode%20%3C%20Keys.D0%20%7C%7C%20e.KeyCode%20%3E%20Keys.D9)%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Determine%20whether%20the%20keystroke%20is%20a%20number%20from%20the%20keypad.%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20(e.KeyCode%20%3C%20Keys.NumPad0%20%7C%7C%20e.KeyCode%20%3E%20Keys.NumPad9)%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Determine%20whether%20the%20keystroke%20is%20a%20backspace.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20if(e.KeyCode%20!%3D%20Keys.Back)%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20A%20non-numerical%20keystroke%20was%20pressed.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Set%20the%20flag%20to%20true%20and%20evaluate%20in%20KeyPress%20event.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20m_nonNumberEntered%20%3D%20true%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20private%20void%20m_textBox_KeyPress(object%20sender%2C%20KeyPressEventArgs%20e)%20%7B%0A%20%20%20%20%20%20%20%20%2F%2F%20Check%20for%20the%20flag%20being%20set%20in%20the%20KeyDown%20event.%0A%20%20%20%20%20%20%20%20if%20(m_nonNumberEntered)%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20Stop%20the%20character%20from%20being%20entered%20into%20the%20control%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20since%20it%20is%20non-numerical.%0A%20%20%20%20%20%20%20%20%20%20%20%20e.Handled%20%3D%20true%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20%5BSTAThread%5D%0A%20%20%20%20static%20void%20Main(string%5B%5D%20args)%20%7B%0A%20%20%20%20%20%20%20%20Application.EnableVisualStyles()%3B%0A%20%20%20%20%20%20%20%20Application.SetCompatibleTextRenderingDefault(false)%3B%0A%20%20%20%20%20%20%20%20Application.Run(new%20TestForm())%3B%0A%20%20%20%20%7D%0A%7D"></embed>
  1. usingSystem;
  2. usingSystem.Drawing;
  3. usingSystem.Windows.Forms;
  4. sealedclassTestForm:Form
  5. {
  6. privateTextBoxm_textBox;
  7. privateboolm_nonNumberEntered=false;
  8. publicTestForm(){
  9. InitializeComponent();
  10. }
  11. privatevoidInitializeComponent(){
  12. this.m_textBox=newTextBox();
  13. this.m_textBox.Dock=DockStyle.Fill;
  14. this.m_textBox.KeyDown+=m_textBox_KeyDown;
  15. this.m_textBox.KeyPress+=m_textBox_KeyPress;
  16. this.ClientSize=newSize(100,60);
  17. this.Controls.Add(this.m_textBox);
  18. this.PerformLayout();
  19. }
  20. privatevoidm_textBox_KeyDown(objectsender,KeyEventArgse){
  21. //Initializetheflagtofalse.
  22. m_nonNumberEntered=false;
  23. //Determinewhetherthekeystrokeisanumberfromthetopofthekeyboard.
  24. if(e.KeyCode<Keys.D0||e.KeyCode>Keys.D9){
  25. //Determinewhetherthekeystrokeisanumberfromthekeypad.
  26. if(e.KeyCode<Keys.NumPad0||e.KeyCode>Keys.NumPad9){
  27. //Determinewhetherthekeystrokeisabackspace.
  28. if(e.KeyCode!=Keys.Back){
  29. //Anon-numericalkeystrokewaspressed.
  30. //SettheflagtotrueandevaluateinKeyPressevent.
  31. m_nonNumberEntered=true;
  32. }
  33. }
  34. }
  35. }
  36. privatevoidm_textBox_KeyPress(objectsender,KeyPressEventArgse){
  37. //CheckfortheflagbeingsetintheKeyDownevent.
  38. if(m_nonNumberEntered){
  39. //Stopthecharacterfrombeingenteredintothecontrol
  40. //sinceitisnon-numerical.
  41. e.Handled=true;
  42. }
  43. }
  44. [STAThread]
  45. staticvoidMain(string[]args){
  46. Application.EnableVisualStyles();
  47. Application.SetCompatibleTextRenderingDefault(false);
  48. Application.Run(newTestForm());
  49. }
  50. }

(判断逻辑来自KeyEventArgs在MSDN文档上的范例代码

得到的文本框外观与一般的TextBox没区别,只是无法由键盘输入数字字符以外的字符。要避免任意字符串被复制-粘贴进来的话,要另外做些判断。这里就不详细写了。

=========================================================================================

三、使用MaskedTextBox

使用例子:
C#代码<embed type="application/x-shockwave-flash" width="14" height="15" src="http://rednaxelafx.iteye.com/javascripts/syntaxhighlighter/clipboard_new.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" allowscriptaccess="always" quality="high" flashvars="clipboard=using%20System%3B%0Ausing%20System.Windows.Forms%3B%0A%0Asealed%20class%20TestForm%20%3A%20Form%0A%7B%0A%20%20%20%20private%20MaskedTextBox%20m_maskedTextBox%3B%0A%20%20%20%20private%20ToolTip%20m_toolTip%3B%0A%20%20%20%20%0A%20%20%20%20public%20TestForm()%20%7B%0A%20%20%20%20%20%20%20%20InitializeComponent()%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20private%20void%20InitializeComponent()%20%7B%0A%20%20%20%20%20%20%20%20this.m_maskedTextBox%20%3D%20new%20MaskedTextBox()%3B%0A%20%20%20%20%20%20%20%20this.m_maskedTextBox.Mask%20%3D%20%22999%2C999.00%22%3B%0A%20%20%20%20%20%20%20%20this.m_maskedTextBox.Dock%20%3D%20DockStyle.Fill%3B%0A%20%20%20%20%20%20%20%20this.m_maskedTextBox.MaskInputRejected%20%2B%3D%20m_maskedTextBox_InputRejected%3B%0A%20%20%20%20%20%20%20%20this.m_maskedTextBox.KeyDown%20%2B%3D%20m_maskedTextBox_KeyDown%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20this.m_toolTip%20%3D%20new%20ToolTip()%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20this.ClientSize%20%3D%20new%20Size(100%2C%2060)%3B%0A%20%20%20%20%20%20%20%20this.Controls.Add(this.m_maskedTextBox)%3B%0A%20%20%20%20%20%20%20%20this.PerformLayout()%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20private%20void%20m_maskedTextBox_InputRejected(object%20sender%2C%0A%20%20%20%20%20%20%20%20MaskInputRejectedEventArgs%20e)%20%7B%0A%20%20%20%20%20%20%20%20toolTip.ToolTipTitle%20%3D%20%22Invalid%20Input%22%3B%0A%20%20%20%20%20%20%20%20toolTip.Show(%22Only%20digits%20(0-9)%20are%20allowed.%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20m_maskedTextBox%2C%20m_maskedTextBox.Location%2C%205000)%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20private%20void%20m_maskedTextBox_KeyDown(object%20sender%2C%20KeyEventArgs%20e)%20%7B%0A%20%20%20%20%20%20%20%20m_toolTip.Hide(maskedTextBox)%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20%5BSTAThread%5D%0A%20%20%20%20static%20void%20Main(string%5B%5D%20args)%20%7B%0A%20%20%20%20%20%20%20%20Application.EnableVisualStyles()%3B%0A%20%20%20%20%20%20%20%20Application.SetCompatibleTextRenderingDefault(false)%3B%0A%20%20%20%20%20%20%20%20Application.Run(new%20TestForm())%3B%0A%20%20%20%20%7D%0A%7D"></embed>
  1. usingSystem;
  2. usingSystem.Windows.Forms;
  3. sealedclassTestForm:Form
  4. {
  5. privateMaskedTextBoxm_maskedTextBox;
  6. privateToolTipm_toolTip;
  7. publicTestForm(){
  8. InitializeComponent();
  9. }
  10. privatevoidInitializeComponent(){
  11. this.m_maskedTextBox=newMaskedTextBox();
  12. this.m_maskedTextBox.Mask="999,999.00";
  13. this.m_maskedTextBox.Dock=DockStyle.Fill;
  14. this.m_maskedTextBox.MaskInputRejected+=m_maskedTextBox_InputRejected;
  15. this.m_maskedTextBox.KeyDown+=m_maskedTextBox_KeyDown;
  16. this.m_toolTip=newToolTip();
  17. this.ClientSize=newSize(100,60);
  18. this.Controls.Add(this.m_maskedTextBox);
  19. this.PerformLayout();
  20. }
  21. privatevoidm_maskedTextBox_InputRejected(objectsender,
  22. MaskInputRejectedEventArgse){
  23. toolTip.ToolTipTitle="InvalidInput";
  24. toolTip.Show("Onlydigits(0-9)areallowed.",
  25. m_maskedTextBox,m_maskedTextBox.Location,5000);
  26. }
  27. privatevoidm_maskedTextBox_KeyDown(objectsender,KeyEventArgse){
  28. m_toolTip.Hide(maskedTextBox);
  29. }
  30. [STAThread]
  31. staticvoidMain(string[]args){
  32. Application.EnableVisualStyles();
  33. Application.SetCompatibleTextRenderingDefault(false);
  34. Application.Run(newTestForm());
  35. }
  36. }

这段代码是手写的;要是用VS2005/VS2008的设计器的话,这个例子的所有功能都能直接在设计器里指定。

输入内容(可以看到分隔符都不需要自己写了,已经写好在输入框里;只要填空就行):

输入内容不符合Mask属性指定的模式时:


=========================================================================================

四、使用NumericUpDown

C#代码<embed type="application/x-shockwave-flash" width="14" height="15" src="http://rednaxelafx.iteye.com/javascripts/syntaxhighlighter/clipboard_new.swf" pluginspage="http://www.macromedia.com/go/getflashplayer" allowscriptaccess="always" quality="high" flashvars="clipboard=using%20System%3B%0Ausing%20System.Drawing%3B%0Ausing%20System.Windows.Forms%3B%0A%0Asealed%20class%20TestForm%20%3A%20Form%0A%7B%0A%20%20%20%20private%20NumericUpDown%20m_numericUpDown%3B%0A%20%20%20%20%0A%20%20%20%20public%20TestForm()%20%7B%0A%20%20%20%20%20%20%20%20InitializeComponent()%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20private%20void%20InitializeComponent()%20%7B%0A%20%20%20%20%20%20%20%20this.m_numericUpDown%20%3D%20new%20NumericUpDown()%3B%0A%20%20%20%20%20%20%20%20this.m_numericUpDown.Value%20%3D%20100%3B%0A%20%20%20%20%20%20%20%20this.m_numericUpDown.Dock%20%3D%20DockStyle.Fill%3B%0A%20%20%20%20%20%20%20%20this.m_numericUpDown.ThousandsSeparator%20%3D%20true%3B%0A%20%20%20%20%20%20%20%20this.m_numericUpDown.Maximum%20%3D%20int.MaxValue%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%20%20%20%20this.ClientSize%20%3D%20new%20Size(100%2C%2060)%3B%0A%20%20%20%20%20%20%20%20this.Controls.Add(this.m_numericUpDown)%3B%0A%20%20%20%20%20%20%20%20this.PerformLayout()%3B%0A%20%20%20%20%7D%0A%20%20%20%20%0A%20%20%20%20%5BSystem.STAThread%5D%0A%20%20%20%20static%20void%20Main(string%5B%5D%20args)%20%7B%0A%20%20%20%20%20%20%20%20Application.EnableVisualStyles()%3B%0A%20%20%20%20%20%20%20%20Application.SetCompatibleTextRenderingDefault(false)%3B%0A%20%20%20%20%20%20%20%20Application.Run(new%20TestForm())%3B%0A%20%20%20%20%7D%0A%7D"></embed>
  1. usingSystem;
  2. usingSystem.Drawing;
  3. usingSystem.Windows.Forms;
  4. sealedclassTestForm:Form
  5. {
  6. privateNumericUpDownm_numericUpDown;
  7. publicTestForm(){
  8. InitializeComponent();
  9. }
  10. privatevoidInitializeComponent(){
  11. this.m_numericUpDown=newNumericUpDown();
  12. this.m_numericUpDown.Value=100;
  13. this.m_numericUpDown.Dock=DockStyle.Fill;
  14. this.m_numericUpDown.ThousandsSeparator=true;
  15. this.m_numericUpDown.Maximum=int.MaxValue;
  16. this.ClientSize=newSize(100,60);
  17. this.Controls.Add(this.m_numericUpDown);
  18. this.PerformLayout();
  19. }
  20. [System.STAThread]
  21. staticvoidMain(string[]args){
  22. Application.EnableVisualStyles();
  23. Application.SetCompatibleTextRenderingDefault(false);
  24. Application.Run(newTestForm());
  25. }
  26. }

这段代码是手写的;要是用VS2005/VS2008的设计器的话,这个例子的所有功能都能直接在设计器里指定。
NumericUpDown的内容的值可以用Value属性来设置或获取,类型为decimal

截图:(输入不符合要求的字符时,默认行为是beep一下,没有工具条的提示)
分享到:
评论

相关推荐

    c# .net Wince 数字输入控件 数字键盘

    这个控件通常被称为“数字输入控件”,它的设计目标是模拟HMI(人机界面)屏幕上的数字输入框,提供一个友好的、易于触控操作的界面。 在Wince系统上,由于硬件资源有限且多为触控操作,因此,设计一个高效且直观的...

    C#Text只能输入数字自定义控件

    在C#编程中,开发人员有时需要创建特定类型的输入控件,例如只允许用户输入数字的文本框。这种自定义控件可以确保数据的准确性和一致性,尤其在处理财务、统计或其他数值相关的应用中。本教程将深入讲解如何在C#中...

    c# winform textbox控件只能输入数字的几种方法

    在C# WinForms开发中,有时我们需要限制TextBox控件只接受数字输入,这对于处理数值数据的应用程序来说尤为重要。本文将详细介绍几种实现这一功能的方法,并深入分析每种方法的工作原理及适用场景。 ### 方法一:...

    winform C# Led数字显示控件

    本篇将详细介绍如何在C#环境下创建一个自定义的LED数字显示控件,并探讨其液晶显示功能,以及如何调整大小和颜色。 首先,我们需要创建一个新的用户控件(UserControl)项目。在Visual Studio中,选择"文件" -&gt; ...

    自制控件:C#中TextBox控件只允许输入数字

    例如,在财务应用或数学计算程序中,我们可能希望某个文本框(`TextBox`)仅能接受数字输入,包括整数和小数。这种限制可以通过自定义控件来实现,从而提高应用程序的质量和用户体验。 #### 技术细节 本案例中展示...

    C# TextBox中只允许输入数字的解决方法

    在C#编程中,TextBox控件是最常用的用户输入控件之一,它允许用户输入文本。然而,有时我们希望限制用户只能输入数字,例如在创建一个简单的计算器或数据录入界面时。下面将详细介绍如何实现C# TextBox控件只允许...

    C# IP地址输入控件

    通过以上描述,我们可以看到"C# IP地址输入控件"的实现涉及了控件设计、事件处理、数据验证、用户交互等多个方面,是C# Winform开发中的一个实用技巧。通过这个控件,我们可以提供更加直观、准确的IP地址输入方式,...

    c# 数字键盘控件

    下面我们将详细探讨如何创建和使用C#数字键盘控件,以及相关的编程概念和技术。 首先,我们需要理解控件的基本概念。在Windows Forms或WPF应用中,控件是用户界面的基础元素,如按钮、文本框等,它们提供了与用户...

    C#写的虚拟键盘输入用户自定义控件+源码+调用实例

    本资源提供了一个基于C#编写的虚拟键盘控件,适用于多种应用场景,如无物理键盘的触摸设备或者增强安全性输入等。这个控件允许用户自定义其外观和功能,以满足特定的需求。 首先,我们要理解什么是虚拟键盘。虚拟...

    车牌号码输入控件,通过点击输入

    本文将深入探讨一个特定的UI组件——车牌号码输入控件,该控件允许用户通过点击来输入车牌号码,支持简称、字母和数字的自定义输入。我们将详细讨论它的设计原理、功能特性以及在实际应用中的实现方法。 首先,车牌...

    利用C#.NET实现PC机与研华ADAM-4050模块数字量输入实例(MSComm控件)

    在本文中,我们将深入探讨如何使用C#.NET编程语言与研华ADAM-4050模块进行数字量输入的实现。研华ADAM-4050是一款工业级的数据采集模块,它提供了数字量输入/输出功能,常用于自动化控制、监控系统等场合。而C#.NET...

    NumTextBox.rar_C# 数字控件

    这样,用户界面就会有一个只接受数字输入的文本框。 开发者还可以利用`NumTextBox`提供的事件来实现业务逻辑,比如在用户输入完成后更新数据库或其他操作: ```csharp numBox.TextChanged += (sender, e) =&gt; { ...

    C#winform控件textbox按键输入控制.rar

    1. **数字输入限制**:如果要确保TextBox只接受数字输入,可以在`KeyPress`事件中检查`e.KeyChar`的值。如果它不是数字或退格键,就取消事件处理,阻止其他字符输入。 ```csharp private void textBox1_KeyPress...

    C#.net中TextBox输入浮点型数字

    ### C#.NET中限制TextBox仅能输入浮点型数字的方法 在C#.NET开发中,经常需要对用户输入的数据进行格式控制,特别是当输入框(`TextBox`)用于收集数值时,确保用户只能输入合法的浮点数是非常重要的。本文将详细...

    C#文本框TextBox只有输入数字

    综上所述,通过结合`KeyPress`、`TextChanged`等事件,并利用`TryParse`系列方法,我们可以有效地限制C#的TextBox控件只接受数字输入,同时提供良好的用户体验。在实际项目中,可以根据需求进行适当的调整和扩展。

    C#文本框只能输入数字

    在C#编程语言中,文本框(TextBox)是Windows Forms应用程序中最常用的控件之一,用于接收用户的输入。但在某些应用场景下,我们可能需要限制用户在文本框中输入的内容类型,例如仅允许输入数字。这种需求常见于需要...

    c# winForm Ip地址输入控件

    总之,创建一个"C# WinForm IP地址输入控件"涉及到设计UI布局,实现输入验证,以及提供方便的接口供其他代码使用。通过这样的自定义控件,开发者可以在Windows应用程序中提供一个符合用户习惯的IP地址输入体验。

    C#软件界面弹窗输入小键盘

    在C#编程环境中,开发一款软件界面弹窗输入小键盘是一项常见的需求,特别是在无物理键盘或者需要优化输入体验的场景下。这个功能可以为用户提供一个虚拟键盘,让他们能够通过鼠标或者触摸屏输入数字,以便进行参数...

    自定义控件C# TextBox

    你可以将这个自定义控件添加到你的Windows Forms或WPF应用中,作为标准TextBox的替代,以确保所有数字输入的字段都符合预期。 至于提供的文件"TextBox.sln",这是一个Visual Studio解决方案文件,其中包含了项目的...

Global site tag (gtag.js) - Google Analytics