I'm trying to capture all mouse events in a user control (even the ones that occur in child controls). For that I use the "override WndProc"-approach:

protected override void WndProc(ref Message m)
{
  System.Diagnostics.Debug.WriteLine(m.Msg.ToString());
  base.WndProc(ref m);
}

I'm especially interested in mouse events, but that does not seem to work. I do get mouse button up/down events, but I don't get mouse move and mouse wheel events.

Any ideas?

link|improve this question

78% accept rate
3  
Eh? What are you trying to tell me? ;-) – Boris Dec 12 '11 at 9:30
feedback

2 Answers

Best you could do is implement IMessageFilter in your control.

 public class CustomMessageFilter:UserControl,IMessageFilter
{
    public bool PreFilterMessage(ref Message m)
    {
        //Process your message here
        throw new NotImplementedException();

    }
}

you can write your message filtering logic in PreFilterMessage Method. Then just install it to the list of Message Filter in Main method.

 Application.AddMessageFilter(new CustomMessageFilter());

This is a Application level hook, that means you can control all the Win32 message within application.

link|improve this answer
Actually I tried that (code almost identical to what you suggested) but the method is never called. – Boris Dec 12 '11 at 9:51
How did you register it your user control (MessageFilter) ?? – Int3 ὰ Dec 12 '11 at 9:57
Like this: Application.AddMessageFilter(this); (in the UCs constructor) – Boris Dec 12 '11 at 9:58
No, you need to install before Message loop start, that said, before Application.Run(); – Int3 ὰ Dec 12 '11 at 10:00
Mh, and if that ain't possible? The user control will be instantiated by a native C++ application somewhere during runtime... – Boris Dec 12 '11 at 10:03
show 1 more comment
feedback

The correct way to capture all mouse events in a control is to call that control's Control.Capture method.

Typically this is a temporary state like doing drag n drop, user-drawing, and so forth.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.