I am designing an application where I basically want to load geographical maps that are defined using paths (outlines of countries).
The Maps should be displayed on my Window and when I hover each country on the map, it should change color.
I managed to do this partially by exporting an svg map to xaml and including this xaml in a custom usercontrol. My current code is much like the one used to design THIS.
However, I now want to modify the software in such a way that I can:
a) load different maps at runtime; therefore there should be a way to load the paths into my control at runtime.
b) Get the map information in some form of xml file format that would not only allow me to store a map graphic, but also additional data blocks for other stuff/information.
I am really new to WPF and have absolutely no clue about how to go about this...