Anyone copy/pasted a polygon from one layer to another using Silverlight
thanks
This can be done using silverlight too. However you cannot directly add a graphic from one layer to another. You would need to clone the geometry and copy over attributes from LayerAGraphic to LayerBGraphic.
Grpahic LayerBGraphic; = new Graphic(); LayerBGraphic.Geometry=ESRI.ArcGIS.Client.Geometry.Geometry.Clone(layerAGraphic.Geometry); foreach (var attrib in layerAGraphic.Attributes) { LayerBGraphic.Attributes[attrib.Key] = attrib.Value; }