Hi all, I am using this way to add text to the map:
<esriSymbols:TextSymbol x:Name="AddTextSymbol" Foreground="Black" FontSize="14" />
GraphicsLayer graphicsLayer = MyMap.Layers["MyAddGraphicsLayer"] as GraphicsLayer;
ESRI.ArcGIS.Client.Graphic graphic = new ESRI.ArcGIS.Client.Graphic()
{
Geometry = e.MapPoint,
Symbol = AddTextSymbol
};
graphicsLayer.Graphics.Add(graphic);
But it seems that textsymbol doesn't have a fontstyle property. ..So does anyone know how to set the fontstyle for textsymbol (regular, bold or itallic) Thank you very much 🙂