我也是现学现卖  :)
首先把form的 KeyPreview属性设为True,然后将form上的TextBox的TabIndex按你要切换焦点的顺序排列,比如TextBox1的TabIndex 设为0,TextBox2的TabIndex 设为1,以此类推。在Form的keyPress事件中加入private void Form1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if(e.KeyChar == (char)13)
{
SendKeys.Send("{TAB}");
}
}就行了!