在C# 中 如何限制在文本框(textBox)中輸入的類型爲正整數

在文本框的 KeyPress 事件中寫下這些代碼就能夠保證是正整數了
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (!(Char.IsNumber(e.KeyChar) || e.KeyChar == '\b'))
{
e.Handled = true;
}

}spa

相關文章
相關標籤/搜索