I am working on a Silverlight application which displays multiple small icons on a Canvas, each icon being around 10×10 pixels in size. The icon is defined by a Path.
There is a usability issue where some icons are shaped like this, and as a result, if the user clicks in the gap, no click is registered. See the image below to see what I mean.

I’m wondering, is there an easy way in WPF/Silverlight to enable the “background” of a path to be clickable? Rather than wrapping it in another WPF type which will increase the burden on the renderer.
Alternatively, is there a simple fix to improve the system, say wrap the Path in a Rectangle or other geometry to make the entire area clickable?
Use a drawing brush with a drawing group, instead of a path.