代码改变世界

随笔档案-2013年07月

c# winform文本框数字,数值校验

2013-07-03 17:21 by 小sa, 969 阅读, 收藏, 编辑
摘要: 文本框数字,数值校验 public void DigitCheck_KeyPress(object sender, KeyPressEventArgs e) { e.Handled = !char.IsDigit(e.KeyChar) && !char.IsControl(e.KeyChar); } public void DecimalCheck_KeyPress(object sender, KeyPressEventArgs e) { if (!char.IsControl(... 阅读全文