foreach (var bufferGraphic in e.Results)             {                 bufferGraphic.Attributes.Add("IntersectIndicator", "N");                 foreach (var featureLayerGraphic in WorkActivityFeatureLayer.Graphics)                 {                     if (bufferGraphic.Geometry.Extent.Intersects(featureLayerGraphic.Geometry.Extent))                     {                         bufferGraphic.Attributes["IntersectIndicator"] = "Y";                         break;                     }                 }             }Solved! Go to Solution.
The "Code Behind C#" and "XAML" pages are not showing in the Silverlight app though... it�??s just blank?