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

rm 重写ProcessCmdKey: 解决enter同时Tab 的问题

2019-11-17 03:55:47
字体:
来源:转载
供稿:网友
PRotected override bool ProcessCmdKey(ref Message msg, Keys keyData)
        {
             if (keyData == Keys.Enter && ((!(ActiveControl is System.Windows.Forms.TextBox)
                 || !((System.Windows.Forms.TextBox)ActiveControl).AcceptsReturn)))
            {
                SendKeys.SendWait("{Tab}");
                return true;
            }
            if (keyData == ( Keys.Enter | Keys.Shift))
            {
                SendKeys.SendWait("+{Tab}");
                return true;
            }
            return base.ProcessCmdKey(ref msg, keyData);
        }



本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/wyf1022/archive/2009/12/28/5089695.aspx
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表