回车转Tab

把Form的KeyPreView设为true,然后在Form的KeyPress中增加下列代码即可:

if (e.KeyChar == ' ')
this.SelectNextControl(this.ActiveControl, true, true, true, true);

原文地址:https://www.cnblogs.com/gobuild/p/4924211.html