I'm sorry I did not understand the question. Are you trying to use Draw (similar to this sample: http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#DrawGraphics) ? And you are trying to set or get the graphic symbol?
MyMap.Layers.Add(new GraphicsLayer() { ID = "MyGraphicsLayer"}); GraphicsLayer graphicsLayer = MyMap.Layers["MyGraphicsLayer"] as GraphicsLayer; ESRI.ArcGIS.Client.Graphic graphic = new ESRI.ArcGIS.Client.Graphic() { Geometry = args.Geometry, Symbol = _activeSymbol, }; graphicsLayer.Graphics.Add(graphic);
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.