Global Windows Key Press

萝らか妹 提交于 2019-12-17 22:43:14

问题


I have a simple WPF application and I need to capture F1 key pressed in Windows (Operation System), even if my WPF window is minimized, or it isn't activated.

I have problems with detecting this. I searched on Internet and I found many results, but they didn't helped me.

For detecting a key pressed inside of application I used this simple code:

AddHandler(Keyboard.KeyDownEvent, (KeyEventHandler)KeyPressed);
private void KeyPressed(object sender, KeyEventArgs e)
{
      if (e.Key == Key.F1)
      {
           //my code went here
      }
}

But this doesn't work when my window isn't activated.

So, my question is: how to detect global key press?

I repeat: It is a WPF application.


回答1:


No need to Keyboard Hooking. Just use RegisterHotKey (Defines a system-wide hot key) and UnregisterHotKey from Windows API. Try using these in C# from pinvoke.net or these tutorials:

  • Global Hotkeys: Register a hotkey that is triggered even when form isn't focused.
  • Simple steps to enable Hotkey and ShortcutInput user control

There is a sample in Microsoft Forums.

You can use these modifiers and Virtual-Key Codes:

MOD_ALT      (0x0001)
MOD_CONTROL  (0x0002)
MOD_NOREPEAT (0x4000)
MOD_SHIFT    (0x0004)
MOD_WIN      (0x0008)

for example F1 key is VK_F1 (0x70).




回答2:


When your application is not in focus - messags pump will not get anything - you need to use system level API's for hooking keys. (try to search info on SetWindowsHookEx)



来源:https://stackoverflow.com/questions/11752254/global-windows-key-press

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!