码迷,mamicode.com
首页 > Windows程序 > 详细

C# TextBox 只能输入数字

时间:2015-09-22 16:33:08      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            TextBox txt = sender as TextBox;
            //屏蔽非法按键,只能输入小数
            if ((e.KeyChar >= 0 && e.KeyChar <= 9) || e.KeyChar == - || e.KeyChar == . || e.KeyChar == 8)
            {
                if (txt.Text.Contains(".") && e.KeyChar == .)
                {
                    e.Handled = true;             
                }
                else if (e.KeyChar == -)
                {
                    if (txt.Text.Length != 0)
                    {
                        e.Handled = true;
                    }
                }             
            }          
            else
            {
                e.Handled = true;
            }
        }  

 

C# TextBox 只能输入数字

标签:

原文地址:http://www.cnblogs.com/profession/p/4828922.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!