How can I pass Mouse Move events to the parent control but then continue to use the same Mouse Events in the child control?
So far tried this but then I cannot use Mouse events on my child control.
protected override void WndProc(ref Message m) {
const int WM_NCHITTEST = 0x0084;
const int HTTRANSPARENT = (-1);
if (m.Msg == WM_NCHITTEST)
m.Result = (IntPtr)HTTRANSPARENT;
else
base.WndProc(ref m);
}