Tagged Questions

11
votes
2answers
1k views

What does WPF use to capture mouse and keyboard input?

I globally (system-wide) filter certain mouse clicks using SetWindowsHookEx and WH_MOUSE_LL. The problem is it doesn't work for WPF applications (all WPF applications detect mouse clicks whether or ...
3
votes
2answers
2k views

How can I disable mouse click event system wide using C#?

Hey guys, I have a laptop with a very sensitive touch pad, and wanted to code a small program that could block the mouse input when I was typing a paper or something. I didn't think it would be hard ...
2
votes
6answers
766 views

C#: How do I get the coordinates of my mouse when left/right mouse button has been pressed?

How do I get the coordinates of my mouse when left/right mouse button has been pressed? I am using a low level mouse hook and am able to get the current position of my cursor, but I would like to be ...
1
vote
2answers
91 views

Is there a .NET library for sending keystrokes, mouse clicks, mouse movements and other input? Similar to AutoHotKey but for .NET library use?

I'm looking to essentially write code similar to what I can do with AutoHotKey, only in .NET and C#, because it's a much more robust environment. I didn't know if there was a wrapper library ...
0
votes
1answer
61 views

How to Unhook two hook procedures simultaneously?

In my application I created two procedures namely callbackwnd procedure to handle focus events and mouse procedure to handle mouse click events.when I unhook the two procedure the application will ...
0
votes
2answers
502 views

Problems with creating a mouse hook using the Windows API [closed]

I am trying to create a mouse hook using the Windows API. Currently, I have the following code, but I am struggling to make it work. Perhaps some sample code would help me to understand the concepts ...
0
votes
2answers
873 views

Hook application with .NET to capture double click events

How can I hook an application so that I can find out when the mouse is double clicked within it? Can this be done in .NET? Are there anythings I should be careful about? (crashing the other ...