码迷,mamicode.com
首页 > 其他好文 > 详细

将回车键转换为Tab键

时间:2019-01-18 23:56:09      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:strong   send   tab键   ext   分享   box   arp   知识   bsp   

实现效果:

  技术分享图片

知识运用:

  KeyEventArgs类的KeyValue属性

  public int KeyValue {get;}      //获取KeyDown或KeyUp事件的键盘值

  SendKeys类的Send方法

实现代码:

        private void textBox2_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyValue == 13)
            {
                SendKeys.Send("{TAB}");
            }
        }

 

将回车键转换为Tab键

标签:strong   send   tab键   ext   分享   box   arp   知识   bsp   

原文地址:https://www.cnblogs.com/feiyucha/p/10290075.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!