Winform控件输入的字母转换成大写

private void textBoxHbh_KeyPress(object sender, KeyPressEventArgs e)
{

if (e.KeyChar >= 'a' && e.KeyChar <= 'z')
{
this.textBoxHbh.Text = this.textBoxHbh.Text + e.KeyChar.ToString().ToUpper();
e.Handled = true;
textBoxHbh.SelectionStart = textBoxHbh.Text.Length;
}

}

上一篇:032. asp.netWeb用户控件之一初识用户控件并为其自定义属性


下一篇:034. asp.netWeb用户控件之三通过用户控件实现用户注册和登录