在C#Windows窗体应用程序中捕获Ctrl + Shift + P键击

时间:2011-10-04 16:15:32

标签: c# winforms

  

可能重复:
  Capture combination key event in a Windows Forms application

当按下( Ctrl + Shift + P )键时,我需要执行特定的操作。

如何在我的C#应用程序中捕获它?

4 个答案:

答案 0 :(得分:21)

我个人认为这是最简单的方法。

    private void Form1_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.Control && e.Shift && e.KeyCode == Keys.P)
        {
            MessageBox.Show("Hello");
        }
    }

答案 1 :(得分:2)

您可以将KeyDownEvent与lambda事件处理程序一起使用:

Here is some more information about KeyDown。阅读文章并考虑您希望出现此行为的范围。

this.KeyDown += (object sender, KeyEventArgs e) =>
{
    if (e.Control && e.Shift && e.KeyCode == Keys.P)
    {
        MessageBox.Show("pressed");
    }
};

答案 2 :(得分:2)

以下不仅是一种捕获表单按键的方法,而且实际上是一种添加全局Windows快捷方式的方法。

1。在您的班级顶部导入所需的库:

// DLL libraries used to manage hotkeys
[DllImport("user32.dll")] public static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vlc);
[DllImport("user32.dll")] public static extern bool UnregisterHotKey(IntPtr hWnd, int id);

2。Windows Forms课程中添加字段,该字段将作为代码中热键的参考:

const int MYACTION_HOTKEY_ID = 1;

3. 注册热键(例如,在Windows窗体的构造函数中):

// Modifier keys codes: Alt = 1, Ctrl = 2, Shift = 4, Win = 8
// Compute the addition of each combination of the keys you want to be pressed
// ALT+CTRL = 1 + 2 = 3 , CTRL+SHIFT = 2 + 4 = 6...
RegisterHotKey(this.Handle, MYACTION_HOTKEY_ID, 6, (int)'P');

4. 通过在Windows窗体类中添加以下方法来处理键入的键:

protected override void WndProc(ref Message m) {
    if (m.Msg == 0x0312 && m.WParam.ToInt32() == MYACTION_HOTKEY_ID) {
        // My hotkey has been typed

        // Do what you want here
        // ...
    }
    base.WndProc(ref m);
}

答案 3 :(得分:0)

通过P/Invoke使用GetKeyboardState API。它返回一个数组,表示Windows识别的每个虚拟键的状态。如果我没有弄错,你可以将Keys枚举转换为一个字节,并将其用作索引,如下所示:

byte[] keys = new byte[256];
GetKeyboardState(keys);
bool isCtrlPressed = (keys[(byte)Keys.ControlKey] == 1);

-

资源: