注释一下啊啊啊啊啊啊啊啊啊啊啊

private void textBox2_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
textBox3.Focus();
}

//这个应该是c#的吧
private void textBox2_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)//如果按下enter键
textBox3.Focus();//textBox3就获取焦点
}

当在第二个文本框中输入并且按下回车后,光标自动移动到第三个文本框上。