摘要:
1.textbox限制只输入数字 要重新定义一个KeyPress函数 private void textBox4_KeyPress(object sender, KeyPressEventArgs e) { if(e.KeyChar != 8 && !Char.IsDigit(e.KeyChar)) 阅读全文
posted @ 2019-09-04 16:12
Geronimo
阅读(180)
评论(0)
推荐(0)
浙公网安备 33010602011771号