I am new to WPF and I have been trying hard for several days to figure out how to interact with elements of a vector image. In my case GeometryDrawing elements.
I u
So while your question is way too broad for a full answer (maybe if someone else has that kind of free time I suppose) but I can at least offer a quickie example related to your goal. You can plop the following example wherever and give it a shot. What the PoC is conveying is how you can interact with a Path in various ways (Red on MouseOver, Green on Click) but I didn't take the time to wire up any actual commands or anything because realistically that becomes a lot more work and I'd likely be doing things like turning each shape into a ButtonBase like ToggleButton
type to retain properties like IsChecked
and making cooler animations like Marching Ants around the selection etc.
Anyway, hope this helps get creative juices flowing. The primary tools used for the PoC below are Mike Swanson's AI to XAML export plugin, and Blend. Hope it helps, cheers.
Visual Example (in a choppy gif, sorry);
and some XAML to play with you can plop wherever;
PASTEBIN LINK : https://pastebin.com/u6qP2qFt
Sorry had to use PasteBin to plop the sample, ran over the character limit for an answer submission.