C# winform 的textbox怎么禁用中文输入?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# winform 的textbox怎么禁用中文输入?相关的知识,希望对你有一定的参考价值。

参考技术A

1,在textbox里面添加KeyPress事件

2,在事件里面写以下代码判断输入内容:

private void textBox1_keyPress(object sender, System.EventArgs e)

    if ((e.KeyChar >= '0' && e.KeyChar <= '9') || (e.KeyChar >= 'A' && e.KeyChar <= 'Z') || (e.KeyChar >= 'a' && e.KeyChar <= 'z'))
        
    else
        e.handled=true;
        MessageBox.Show("禁止输入中文");
    

参考技术B 禁用中文? 只有通过JS的keydown事件来判断用户输入,如果是英文或数字就写进去,中文就删除.追问

winfrom 不是web没有js

追答

那就只有相应textbox的keydown事件了

本回答被提问者采纳
参考技术C if ((e.KeyChar >= '0' && e.KeyChar <= '9') || (e.KeyChar >= 'A' && e.KeyChar <= 'Z') || (e.KeyChar >= 'a' && e.KeyChar <= 'z')这是只可以输入数据和字母的,还能输入什么就自己再加…… 参考技术D 这个你去写个时间控件,然后每过1秒刷新一次,去检测textbox的值是不是有中文(不会怎么检测有没有中文你都不知道吧),然后检查到有了之后,用split给截取,扔掉不要就行啦 第5个回答  2013-07-01 属性设置为只读(ReadOnly)。追问

我是禁止中文,不禁英文

追答

在textbox的KeyPress事件中写,
if(!(e.keychar>='0'&&e.keychar<='9')||e.keychar==(char)8)

e.handled=true;

Winform 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 textBox1_Validating(object sender, CancelEventArgs e)   
{   
const string pattern = @"^\d+\.?\d+{1}quot;;   
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;  
                }  
            }        
  }    
  
方法七:  
  
利用ASCII码处理办法、  
{  
  
            if ((e.KeyChar <= 48 || e.KeyChar >=57) && (e.KeyChar != 8) && (e.KeyChar != 46))  
              e.Handled = true;  
================48代表0,57代表9,8代表空格,46代表小数点  
}  

 

以上是关于C# winform 的textbox怎么禁用中文输入?的主要内容,如果未能解决你的问题,请参考以下文章

C# winForm怎么把textbox 不可见

C# WinForm怎么实现点button后TextBox执行回车?

c# winform 怎么获取控件

C#如何将console的输出转为winForm textBox输出啊??

C#在WinForm中怎样让多行TEXTBOX的换行

c# winform中怎么控制enter键?