Hi, I would like the user to be able to change color and width of the LineSymbol classi tried this in my resource dictionary...
<esri:LineSymbol x:Key="DefaultLineSymbol">
<esri:LineSymbol.ControlTemplate>
<ControlTemplate>
<Path x:Name="Element" Stroke="{TemplateBinding Color}" StrokeThickness="{TemplateBinding Width}" />
</ControlTemplate>
</esri:LineSymbol.ControlTemplate>
</esri:LineSymbol>
but there is a compile error saying ColorProperty is not in Control typeAny suggestions?