Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make Silverlight controls invisible to mouse actions?

How can I get a UIElement to ignore mouse clicks on it and pass it through to the control behind it?

I have a 50% transparent UIElement which covers another element. When I attempt to click on the background element, the mouse click is captured by the foreground semi-transparent UIElement.

like image 276
Mark Ingram Avatar asked Oct 08 '08 13:10

Mark Ingram


1 Answers

Set IsHitTestVisible=false

like image 195
Jobi Joy Avatar answered Oct 17 '22 20:10

Jobi Joy