Is there a way to make controls transparent to mouse events in WPF?

Jordan picture Jordan · Nov 19, 2010 · Viewed 16.5k times · Source

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

Answer

Rachel picture Rachel · Nov 19, 2010

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