我有一个应用程序,始终检查是否按下了F12之类的键。它不需要聚焦在应用程序的主窗口中。我尝试了这段代码:

public int a = 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);

    const int MYACTION_HOTKEY_ID = 1;

    public Form1()
    {
        InitializeComponent();
        // 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, 0, (int) Keys.F12);
    }

    protected override void WndProc(ref Message m)
    {
        if (m.Msg == 0x0312 && m.WParam.ToInt32() == MYACTION_HOTKEY_ID)
        {

            a++;
            MessageBox.Show(a.ToString());
        }
        base.WndProc(ref m);
    }

我在该行的RegisterHotKey(this.Handle, MYACTION_HOTKEY_ID, 0, (int) Keys.F12);中放置了0,以便仅在按F12时才能捕获它。

但这没有用。我该如何解决?

在这里,我听不懂以下几行:
const int MYACTION_HOTKEY_ID = 1;
m.Msg == 0x0312 && m.WParam.ToInt32() == MYACTION_HOTKEY_ID
base.WndProc(ref m);

谁能帮助我了解这些内容?

最佳答案

您的代码没有错。但这在这里不起作用,因为保留了 F12 key ,您可以尝试使用另一个 key ,如 F10 F11 等。

10-04 16:53