古詩詞大全網 - 成語用法 - c# textbox 只能輸入數字 正則表達式

c# textbox 只能輸入數字 正則表達式

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)

{

if (char.IsDigit(e.KeyChar))

{

e.Handled = false;

}

else

{

MessageBox.Show("請輸入數子");

e.Handled = true;

}

}

如果妳把 MessageBox.Show("請輸入數子");

註釋了,那麽妳輸入數字以外的字符都沒有反應