摘要: /// <summary> /// 只能输入数字 /// </summary> private void txt1_KeyPress(object sender, KeyPressEventArgs e) { //如果输入的不是退格和数字,则屏蔽输入 if (!(e.KeyChar == 8 || 阅读全文
posted @ 2022-01-05 17:37 ꧁执笔小白꧂ 阅读(155) 评论(0) 推荐(0)