show/hide this revision's text 3 Typo in the subject

C# WinFroms WinForms UserControl Mouse Event Help

show/hide this revision's text 2 Cleared my thought.

I have a custom control that I created for my project. In this control there are several child controls like a Label, a PictureBox, and a LinkLabel. Other then the LinkLabel, I want the mouse over event currently on the parent control and have the control respond to the mouse over. The background color changes when you hover over the control, but the background color doesn't change when over a child control; this is because there is no MouseEnter and MouseLeave events on the child control. I solved this issue by added the parent controls delegate methods to the child controls. The problem remains that the click even event also is ignored over the child controls when I've subscribed to the click event on my parent controlscontrol. I can subscribe to each individual child control, but how do I force the click event of the parent control? The term I've found by searching is Event Bubbling, but this seems to only apply to ASP.NET technologies and frameworks. Any suggestions?

show/hide this revision's text 1

C# WinFroms UserControl Mouse Event Help

I have a custom control that I created for my project. In this control there are several child controls like a Label, a PictureBox, and a LinkLabel. Other then the LinkLabel, I want the mouse over event currently on the parent control. The background color changes when you hover over the control, but the background color doesn't change when over a child control. The click even also is ignored over the child controls when I've subscribed to the click event on my parent controls. The term I've found by searching is Event Bubbling, but this seems to only apply to ASP.NET technologies and frameworks. Any suggestions?