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

回车键当Tab键使用

时间:2014-07-14 08:09:07      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:使用   数据   for   io   new   re   

 #region 回车键当Tab键使用
        private void enter_KeyPress(object sender, KeyPressEventArgs e)
        {
            foreach (Control c in this.Controls)
            {
                c.KeyPress += new System.Windows.Forms.KeyPressEventHandler(sendEnter);
            }
        }
        private void sendEnter(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == (char)Keys.Enter)
            {
                //使按键生效
                e.Handled = true;
                //发送按键指令
                SendKeys.Send("{Tab}");
            }
        }
        #endregion

 

使用 KeyChar 属性在运行时对击键取样,在特定运行时环境下修改击键。 例如,您可以使用 KeyChar 在用户输入邮政编码时禁用非数字按键,将数据输入字段中所有的字母按键都改为大写,或监视键盘或其他按键输入设备的特定组合键。

您可以获取或设置以下键:

  •  

  •  

    a-z,A-Z。

  •  

  •  

    Ctrl。

  •  

  •  

    标点符号。

  •  

  •  

    键盘顶部和数字键盘上的数字键。

  •  

  •  

    Enter。

您不能获取或设置以下键:

    •  

    •  

      Tab 键。

    •  

    •  

      Insert 和 Delete。

    •  

    •  

      Home。

    •  

    •  

      End。

    •  

    •  

      Page Up 和 Page Down。

    •  

    •  

      F1-F2。

    •  

    •  

      Alt。

    •  

    •  

      箭头键。

回车键当Tab键使用,布布扣,bubuko.com

回车键当Tab键使用

标签:使用   数据   for   io   new   re   

原文地址:http://www.cnblogs.com/swtool/p/3840175.html

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