Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
963 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 ...
5
votes
1answer
397 views

C# low level mouse hook and form event handling

I'm using a simple form generated by VS 2010 which contains 2 buttons, start and stop. Start triggers WH_MOUSE_LL using SetWindowsHookEx, and stop stops the hook. The hook works fine and I mange to ...
5
votes
5answers
1k views

SetWindowsHook stops working after some time

I defined a global hook on WM_MOUSE that works perfectly for some time. It post a message to a specific window each time the mouse move. After some random time the hook stop sending messages. If I ...
3
votes
1answer
187 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 ...
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 ...
3
votes
1answer
214 views

Closing the window delays if a mouse hook is set

If I set a low level mouse hook, WH_MOUSE_LL, when I click the [x] (Close) button the window delays ~500ms and then it disappears. Do you know what causes the delay? And, is there a way to fix it? ...
2
votes
6answers
753 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
85 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 ...
1
vote
2answers
1k views

MouseProc hook and WM_LBUTTONDBLCLK

I have a hook setup for getting mouse events in a plugin I develop. I need to get the WM_LBUTTONDBLCLK, and I expect the message flow to be: WM_LBUTTONDOWN, WM_LBUTTONUP, WM_LBUTTONDBLCLK If the I ...
1
vote
1answer
211 views

Can I suppress selected input before the application's main loop?

As part of my Visual Studio utilities add-in SamTools, I have a mouse input routine that catches Ctrl+MouseWheel and sends a pageup/pagedown command to the active text window. Visual Studio 2010 added ...
0
votes
1answer
52 views

Low Level Mouse Hook: Dealing with applications which prevent capturing

I noticed that my mousehook code fails to work when interacting with EA's Origin store. Basically when clicking inside of the window, it does not call the callback I registered with windows (using the ...
0
votes
2answers
46 views

WW_MOUSE_LL hook doesnt get called

Im currently creating a AFKChecker for my application. The problem is that the low level mouse hook doesnt get called. I have checked if it returns 0 which it doesnt. So the keyboard hook works but ...
0
votes
3answers
243 views

How to get notified of mouse/keyboard activity without a global hook?

I have a transparent window (WS_EX_TRANSPARENT) floating topmost. Whenever there is a mouse move (anywhere on the screen) or keyboard stroke, it needs to display the related info (e.g. mouse ...
0
votes
1answer
59 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
456 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
3answers
520 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
269 views

Determine when a mouse hook has handled the last message. Winforms, .Net

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
529 views

Strange behaviour with mouse hook in .net, winforms

I have a form that is displayed, not by ShowDialog, but by setting it's visible property to true. This is so it behaves like a dropdown. The form installs a mouse hook, using ...
0
votes
2answers
858 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 ...
-1
votes
1answer
76 views

Erroneous Mouse Coordinates Returned from Low Level Mouse Hook C#

I'm building a WPF application with some hackery involved to embed Form elements on the same render layer. Essentially what I do is I render the form off-screen and have a mock-up of the form in a ...