06 2019 档案
winform控制textbox只能输入数字(小数)
摘要:private void txtWgt_KeyPress(object sender, KeyPressEventArgs e) { if (((int)e.KeyChar 57) && (int)e.KeyChar != 8 && (int)e.KeyChar != 46) e.Handled = tru... 阅读全文
posted @ 2019-06-14 10:46 HubbertHu 阅读(1448) 评论(0) 推荐(0)