private void textBox1_Keypress(object sender, KeyPressEventArgs e)
        {
                 if(e.KeyChar=='\r')
                     textBox2.Focus();
        }


这个在运行的时候,鼠标焦点没有移动到textbox2.而且,怎么操作控件,能自动得到
private void textBox1_Keypress这个方法啊,我是手动改的,自动上不去。默认点击
textbox1以后,出来的是
private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }