希望使用文本框仅允许数字数据和退格条目 [英] Wish to use text box to only allow numeric Data and backspace entry

查看:38
本文介绍了希望使用文本框仅允许数字数据和退格条目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

希望使用文本框仅允许数字数据输入



任何人都可以帮助我使用代码来限制文本框中的数字和退格以外的其他代码。

Wish to use text box to only allow numeric Data entry

Can any one help me with code for restricting other than numbers and backspace in text box.

推荐答案

您可以使用 MaskedTextBox [ ^ 带有####的面具 - 这就是它的用途......
You could use a MaskedTextBox[^] with a Mask of "####" - that is what it's there for...


在KeyPress事件上编写以下代码



On KeyPress event write following code

if (char.IsNumber(e.KeyChar))
     e.Handled = false;
else
     e.Handled = true;


试试MSDN文章@

http://msdn.microsoft.com/en-us/library/ms229644(v = VS.90).aspx [ ^ ]
Try the MSDN article @
http://msdn.microsoft.com/en-us/library/ms229644(v=VS.90).aspx[^]


这篇关于希望使用文本框仅允许数字数据和退格条目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆