I have the following XAML code that produces a flashing-expanding (trobe) point. I have to specifically commend out the "MapPoint" section in the code solely to prevent Visual Studio 2010 from crashing. Can someone shed some light on this? Thanks
<esri:GraphicsLayer ID="MyFlashingGraphicPoint" Opacity="0.9" Visible="False" >
<esri:GraphicsLayer.Graphics>
<esri:Graphic Symbol="{StaticResource FlashingMarkerSymbol}">
<!--esri:MapPoint x:Name="MySelectedPoint" X="-10000000" Y="4883000">
<esri:Geometry.SpatialReference >
<esri:SpatialReference WKID="102100" />
</esri:Geometry.SpatialReference>
</esri:MapPoint-->
</esri:Graphic>
</esri:GraphicsLayer.Graphics>
</esri:GraphicsLayer>