C#.NET常見問題(FAQ)-如何讓文本框textbox內容限制爲數字

//限制文本框的輸入 private void txtQuestionScore_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar != '\b')//這是允許輸入退格鍵 { if ((e.KeyChar < '0') || (e.KeyChar > '9'))//這是允許輸入0-9數字 { e.Handled = true;
相關文章
相關標籤/搜索