在c#中 限制文本框只能输入数字

  1.         private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
  2.         {
  3.             if ((e.KeyChar < 48 || e.KeyChar > 57) && (e.KeyChar != 8))
  4.             {
  5.                 e.Handled = true;
  6.                 base.OnKeyPress(e);
  7.             }  
  8.         }

加入到 KeyPress 事件中

你可能感兴趣的:(C#)