C# TextBox中只能输入数字的几种常用方法(C#) textbox 只能输入数字
TextBox中只能输入数字的几种常用方法(C#)
private void tBox_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 0x20) e.KeyChar = (char)0;//禁止空格键
if ((e.KeyChar == 0x2D) && (((TextBox)sender).Text.Length == 0)) return;//处理负数
if (e.KeyChar > 0x20)
{
try
{
double.Parse(((TextBox)sender).Text + e.KeyChar.ToString());
}
catch
{
e.KeyChar = (char)0;//处理非法字符
}
}
}
private void TextBox_KeyPress(object sender, KeyPressEventArgs e)
{
if(e.KeyChar!=8&&!Char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
}
或者private void TextBox_KeyPress(object sender, KeyPressEventArgs e)
{
if(e.KeyChar!='b'&&!Char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
}
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if(e.KeyChar!='b')//这是允许输入退格键
{
if((e.KeyChar<'0')||(e.KeyChar>'9'))//这是允许输入0-9数字
{
e.Handled = true;
}
}
}
private void button1_Click(object sender, EventArgs e)
{
string text = this.textBox1.Text;
if (text != null)
MessageBox.Show(text);
}
private void textBox1_Validating(object sender, CancelEventArgs e)
{
const string pattern = @"^d+.?d+$";
string content = ((TextBox)sender).Text;
if (!(Regex.IsMatch(content, pattern)))
{
errorProvider1.SetError((Control)sender, "只能输入数字!");
e.Cancel = true;
}
else
errorProvider1.SetError((Control)sender, null);
}
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if(e.KeyChar=='.' && this.textBox1.Text.IndexOf(".")!=-1)
{
e.Handled=true;
}
if(!((e.KeyChar>=48 && e.KeyChar<=57) || e.KeyChar=='.' || e.KeyChar==8))
{
e.Handled=true;
}
}
private void tbx_LsRegCapital_KeyPress(object sender, KeyPressEventArgs e)
{
if (!Char.IsNumber(e.KeyChar) && !Char.IsPunctuation(e.KeyChar) && !Char.IsControl(e.KeyChar))
{
e.Handled = true;//消除不合适字符
}
else if (Char.IsPunctuation(e.KeyChar))
{
if (e.KeyChar != '.' || this.textBox1.Text.Length == 0)//小数点
{
e.Handled = true;
}
if (textBox1.Text.LastIndexOf('.') != -1)
{
e.Handled = true;
}
}
}
更多阅读
获得小米优惠卷的几种方式 小米邀请码获得方式
获得小米优惠卷的几种方式——简介在小米官网成功购机的用户(以支付时间为准)可以到小米官网领取700元优惠券1张,可无条件购买小米网包括手机在内的任何商品,有效期3个月!到小米手机新品发布会现场签到的购票及门票F码用户将会享受到与门
祛痘的几种日常方法 那种方法祛痘好用
祛痘的几种日常方法——简介中医认为,面部是脏腑的反射区,当身体内部的肝、脾、胃等脏腑出现问题,反映在脸上,就会在各个相应的部位长出个头、大小、性质不同的“夏闷痘”。想要对付它们,除了使用日常基础护理方案外,试试中医方法以内调外
分享WIN7输入法图标不显示的几种解决方法 win7找不到输入法图标
Windows7系统下,输入法在右下角不能正常显示,或中毒或设置不当。臭虫小明,以图文并茂的方式带大家一起来解决这问题。在电脑没有中毒的情况下,我们只需要启动服务或者修改输入法相关设置即可解决输入法图标不显示问题,若因中毒导致,就需要
酸枣仁的几种食用方法 酸枣仁怎样吃治失眠
酸枣仁的几种食用方法——简介酸枣仁有降低血压、安神镇静和调节神经的作用。据《本草图经》记载,“酸枣仁,主烦心不得眠”。把酸枣仁加入白米中煮成粥,老年人吃起来更容易消化吸收。因此,用酸枣仁、白米熬粥,治疗神经衰弱引起的失眠效果
小学生的几种学习方法
小学生学习方法介绍小学生的几种学习方法——工具/原料学法的掌握,如同知识的获得一样,有一个从无到有,从少到多,从不会到会的发展过程。开始,在很大程序上要靠教师在教给知识的过程中,主动明确的指点。诸如怎样发言答问,怎样执笔写字,怎样