C#文本框限制按鍵輸入

C#文本框限制按鍵輸入 對照ASCII碼錶git 1.僅支持輸入數字 private void txt_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar != 8 && !Char.IsDigit(e.KeyChar)) { e.Handled = true; //禁止輸入 } } 2.
相關文章
相關標籤/搜索