现在的位置: 首页 > 综合 > 正文

TextBox只允许输入数字

2013年12月04日 ⁄ 综合 ⁄ 共 174字 ⁄ 字号 评论关闭

 

protected override void OnKeyPress(KeyPressEventArgs e)
  {
   if (!char.IsDigit(e.KeyChar))
   {
    e.Handled = true;
   }

   if (!Char.IsDigit(e.KeyChar))
   {
    e.Handled = true;
   }
  }

抱歉!评论已关闭.