textBox的输入限制问题
如果根据需要,textBox中只容许输入大写字母,其他的不容许输入(就是除了大写的其他的输不进去),各位同仁,有经验的帮下忙,本人没做过这个,先谢过了
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) {
if(((e.KeyChar >= 'A')&&(e.KeyChar <='Z'))||((e.KeyChar >= '0')&&(e.KeyChar <= '9'))||(e.KeyChar == 8)||((e.KeyChar >='a')&&(e.KeyChar<='z'))) { // } else { e.Handled = true; } }