2011年2月24日
摘要: 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 @ 2011-02-24 09:27 纳米程序员 阅读(246) 评论(0) 推荐(0) 编辑