C#中Windows通用的回车转Tab方法
出处:
麦客学吧 [2007-6-28 17:50:28]
作者:佚名 点击数:426
讨论交流:http://x8.maicoo.com/team/8772.html
原来一直是为每个文本框的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);
【责任编辑: lanier】