首页 > 学院 > 开发设计 > 正文

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

2019-11-18 17:12:07
字体:
来源:转载
供稿:网友
原来一直是为每个文本框的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);
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表