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
1answer
212 views
Hooking the 3rd X-Mouse button?
I wrote a low-level mouse hook in C#, which should capture XBUTTON events. For the 1st and 2nd xButton it works just fine, but there is no message for the 3rd xButton on my mouse. It seems like there ...
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
3answers
560 views
PInvokeStackImbalance - invoking unmanaged code from HookCallback
my goal
i want to translate a left click to a right click
my approach
i register a low-level hook via SetWindowsHookEx (user32.dll)
filter left-mouse-clicks
check if i want to translate THAT ...
0
votes
2answers
277 views
Determine when a mouse hook has handled the last message
I have a form, that acts like a drop-down, that I display non-modal. I attach a mouse hook to the form to determine when the mouse is clicked out of it, so that I know to close it - by setting Visible ...
0
votes
1answer
536 views
Strange behaviour with mouse hook in .NET and Windows Forms
I have a form that is displayed, not by ShowDialog, but by setting its visible property to true. This is so it behaves like a dropdown.
The form installs a mouse hook, using ...
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 ...