快捷键按钮 [英] Keyboard shortcut for a button

查看:197
本文介绍了快捷键按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我提前道歉 - 我是一个牛逼

I apologize in advance - I am a newby.

在C#(微软的Visual 2010),我怎么可以指定键盘快捷方式按钮,像这样的:

In C# (MS Visual 2010), how can I assign a keyboard shortcut to a button such as this:

    private void closeButton_Click(object sender, EventArgs e)
    {
        // Close the program
        this.Close();
    }



我知道我可以使用&放大器;字符按钮的文本,并创建一个<大骨节病>替代 - <大骨节病> N 快捷方式,但我想创建一个单一的按键快捷键,如<大骨节病> C 到执行上面的。

I know I can use the "&" character in the button's Text and create an Alt-n shortcut, but I'd like to create a single keypress shortcut, such as c to execute the above.

非常感谢您的帮助。

推荐答案

的KeyDown是你的朋友。)例如,如果你想要的快捷键,同时按下换挡试试这个

KeyDown is your friend ;) For example if you want the shortcut key a while shift is pressed try this.

    void Form1_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.A && e.Shift) 
            // do something
    }

希望这有助于

更新:

如果你想有一个真实的键盘快捷键,您可以使用挂钩。
看那个:

If you want a "real" keyboard shortcut you can use hooks. Look at that:

RegisterHotKeys,全球键盘钩子(C#)

这篇关于快捷键按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆