方法一、属性设置
VS开发C#程序时TextBox的属性中有个Charactercasing属性:默认为normal,把它改为Upper,这样无论你输入的是大写还是小写,在文本框中显示出的都是大写,如果改为Lower的话就是小写.
方法二、在事件中修改
还可以使用如下方法实现:
1 private void textBox1_KeyPress(object sender, KeyPressEventArgs e) 2 { 3 if((int)e.KeyChar>=97 && (int)e.KeyChar<=122) 4 { 5 e.KeyChar = (char)((int)e.KeyChar - 32); 6 } 7 }
出处:https://www.cnblogs.com/coreybrans/p/4113135.html
=======================================================================================
学习APP开发,接单挣钱!我是Visual Studio的新手,正在使用Visual Studio 2008。
在一个项目中,我想在用户键入时将所有文本全部大写,而不用按Shift键或大写锁定。
我已经使用了这段代码
TextBox1.Text = TextBox1.Text.ToUpper();
但按Enter键后大写字符。
我只希望用户在键入字符时以大写形式显示,而无需按Shift键或大写锁定。
总页码为...
public partial class Test : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
TextBox1.Text = TextBox1.Text.ToUpper();
}
}
有任何解决方案,请指导我。
最佳答案
有一个特定的属性。它称为CharacterCasing,您可以将其设置为Upper
TextBox1.CharacterCasing = CharacterCasing.Upper;
在ASP.NET中,您可以尝试将其添加到文本框样式中
style="text-transform:uppercase;"
您可以在此处找到示例:http://www.w3schools.com/cssref/pr_text_text-transform.asp
出处:https://www.lmlphp.com/user/156836/article/item/2977951/
标签:控件,CharacterCasing,C#,Text,void,大写,TextBox1,text,TextBox From: https://www.cnblogs.com/mq0036/p/16769210.html