首页 > 开发 > 综合 > 正文

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

2024-07-21 02:29:04
字体:
来源:转载
供稿:网友

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

  • 网站运营seo文章大全
  • 提供全面的站长运营经验及seo技术!
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表