方法一: 每个文本框的KeyPress增加: if(e.KeyChar = '\r') SendKeys.Send("{TAB}");
方法二: 把Form的KeyPreView设为true,然后在Form的KeyPress中增加下列代码: if (e.KeyChar == '\r') this.SelectNextControl(this.ActiveControl, true, true, true, true);