在后台捕获键盘按键

我有一个在后台运行的应用程序。每当用户F12随时按下时,我都必须生成一些事件。因此,我需要用它来捕获按键。在我的应用程序中,如果用户在任何时候按下F10某个事件,都将被执行。我不知道该怎么做?

有谁知道怎么做吗?

N:B:这是一个winforms应用程序。它不需要集中我的形式。我的主窗口可能保留在系统托盘中,但仍必须捕获按键。

回答:

您想要的是 。

  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. 在类中添加一个字段,该字段将作为代码中热键的引用:

    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) Keys.F12);

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

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

    }

以上是 在后台捕获键盘按键 的全部内容, 来源链接: utcz.com/qa/406165.html

回到顶部