WPF: Making the entire "block" of a path clickable WPF: Making the entire "block" of a path clickable wpf wpf

WPF: Making the entire "block" of a path clickable


Aviad P. is correct. This is what I do:

<Border Background="Transparent">  <Path ... /></Border>

This works because when "hit testing" to determine where a mouse click should be routed, the "Transparent" brush is considered as if it was a regular color.