Pass-through mouse events to parent control
Yes. After a lot of searching, I found the article “Floating Controls, tooltip-style”, which uses WndProc to change the message from WM_NCHITTEST to HTTRANSPARENT, making the Control transparent to mouse events. To achieve that, create a control inherited from Label and simply add the following code. protected override void WndProc(ref Message m) { const int … Read more