导航

验证Textbox的字符长度

Posted on 2017-12-13 11:13  清浅ヾ  阅读(274)  评论(0编辑  收藏  举报
private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
       if(Char.IsDigit(e.KeyChar) || e.KeyChar.ToString() =="." || e.KeyChar == 8)
      {
           //Indicate the System.Windows.Forms.Control.KeyPress event is not handled
           e.Handled = false;
       }
       else
       {
            e.Handled = true;
       }
}