Hi,Is it possible to create a Symbol programmatically with any shape (with a Path, for example)?The ArcGIS Symbol Gallery uses ControlTemplate like this:<esri:MarkerSymbol x:Key="esriDefaultMarker_33" OffsetX="6.5" OffsetY="6.5">
<esri:MarkerSymbol.ControlTemplate>
<ControlTemplate>
<Grid RenderTransformOrigin="0.5,0.5">
<Grid.RenderTransform>
<TransformGroup>
<ScaleTransform ScaleX="1" ScaleY="1" />
</TransformGroup>
</Grid.RenderTransform>
<Ellipse Width="13" Height="13" Fill="Black" HorizontalAlignment="Center" VerticalAlignment="Center" />
</Grid>
</ControlTemplate>
</esri:MarkerSymbol.ControlTemplate>
</esri:MarkerSymbol>
But I can't convert a Path programmatically to a ControlTemplate.Thanks.