textbox的验证

代码如下:

textBox1.KeyDown += (a, b) =>
    {
        if (b.KeyCode == Keys.Enter)
        {
            textBox2.Focus();
        }
    };
textBox1.Leave += delegate
    {
        int result;
        if (!int.TryParse(textBox1.Text.Trim(), out result))
        {
            MessageBox.Show("fsfd");
            textBox1.Focus();
        }
    };

 

posted on 2013-08-14 07:17  yao2yao4  阅读(298)  评论(0编辑  收藏  举报

导航