上一篇 | 下一篇

C#中Windows通用的回车转Tab方法

发布: 2008-6-30 10:12 | 作者: admin | 来源: | 查看: 4次

原来一直是为每个文本框的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);

字号: | 推荐给好友

评分:0

我来说两句