Say, I build a dynamic map in WPF.
I need to represent in this map locations(say, cities).
The representation of a city is simple: a dot (circle or image) and the text.
Both text and dot image are customizable.
What would you recommend using as a CityControl in WPF?
Examples:
- A UserControl having an
<Ellipse>
(or picture) and<TextBlock>
? - A CustomControl extending a
<TextBlock>
with a specific style? (is it possible to set the style inside this control) - ...something else?