开发者

Capturing mouse/keyboard events outside of form (app running in background)

开发者 https://www.devze.com 2023-01-09 00:03 出处:网络
I have an app that runs in the background (minimized/task tray). I need to be able to detect mouse activity (clicks, move)开发者_如何转开发 as well as keyboard activity.

I have an app that runs in the background (minimized/task tray). I need to be able to detect mouse activity (clicks, move)开发者_如何转开发 as well as keyboard activity.

What is the best way to do this given the constraint that my window is not "focused" ?


Take a look at this library globalmousekeyhook. It is 100% managed c# code to install global mouse and keyboard hooks. It wraps low level hooks into common windows forms keyboard and mouse events.


The magic words are windows hooks. These are created with a p/invoke call to SetWindowsHookEx. You can set up a hook to monitor, among others, keyboard and mouse events. Normally, such hooks are local to the application, but you can also create global hooks. The Microsoft KB shows how.

However, be aware that not all types of global hooks can be used from .NET. In particular, there are only two that you can use: the low-level keyboard and mouse hooks, known as WH_KEYBOARD_LL and WH_MOUSE_LL. Luckily, these are just what you need.

0

精彩评论

暂无评论...
验证码 换一张
取 消