I am working in a project where we have to define the stroke color of a SimpleMarkerSymbol. Right now I am using a ControlTemplate to define it like this:
<ControlTemplate>
<Ellipse Fill="{Binding Symbol.Color}" Stroke="Black" />
</ControlTemplate>
That worked fine until now. I have an enhancement request that asks to make the Stroke color dynamic like the Fill color is. For the Fill color to be dynamic what I did was to Bind it to the "Color" property of the "SimpleMarkerSymbol." That works fine except that I don't see any Stroke property in the SimpleMarkerSymbol class. How can I add that? Do I need to write my own MarkerSymbol class? I tried extending SimpleMarkerSymbol but that is a "sealed" class. Thanks for your help!