快捷键按钮

快捷键按钮

问题描述:

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

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#)