2018年6月9日 星期六

[C#]限制TextBox只能輸入數字

private void TextBox_KeyPress(object sender, KeyPressEventArgs e)
{
     if (!char.IsDigit(e.KeyChar) && !char.IsControl(e.KeyChar))
     {
          e.Handled = true;
      }
 }

沒有留言:

張貼留言