问题
Is there a way that I can let mouse events pass through to controls behind?
回答1:
Sure, just set IsHitTestVisible="False" on the control. Mouse events will pass through it.
回答2:
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.
来源:https://stackoverflow.com/questions/4226770/is-there-a-way-to-make-controls-transparent-to-mouse-events-in-wpf