private void textBox1_KeyPress(object sender, KeyPressEventArgs e)

{

          string pattern = @"^[0-9]|\.$";

          Regex reg = new Regex(pattern);

          if (!reg.Match(e.KeyChar.ToString()).Success)

           {

             e.Handled = true;

           }

}

 posted on 2011-02-24 09:27  纳米程序员  阅读(246)  评论(0编辑  收藏  举报