Is there a way that I can let mouse events pass through to controls behind?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Sure, just set IsHitTestVisible=False on the control. Mouse events will pass through it.

link|improve this answer
Awesome, that worked great! – Jordan Nov 22 '10 at 15:37
feedback

I usually solve these kind of issues by adding handlers of child controls to the parent at construction. This way the 'click'-event for example activates a method that raises the 'click'-event of the parent.

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.