Take a look at http://forums.esri.com/Thread.asp?c=158&f=2455&t=298745.
Morten talks about this a bit and states specifically that the maptips do not support "freezing".
So, is there another way to do this? I looked at InfoWindow, but it is for mouse click event and I want mouse over event.
Take a look at http://forums.esri.com/Thread.asp?c=158&f=2455&t=298745.
Morten talks about this a bit and states specifically that the maptips do not support "freezing".
I read another post mentioned about MapTipHideDelay, but can't find this property at all!
<esri:GraphicsLayer ID="StatesGraphicsLayer"> <esri:GraphicsLayer.MapTip> <Border esri:GraphicsLayer.MapTipHideDelay="00:00:01.5" CornerRadius="10" BorderBrush="#FF222957" BorderThickness="3" Margin="0,0,15,15"> .......
MapTipHideDelay is an attached property owned by the GraphicsLayer class and can be set to the maptip in order to define a hide delay.
There is a sample here : http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#GraphicsMapTip
the XAML code looks like:<esri:GraphicsLayer ID="StatesGraphicsLayer"> <esri:GraphicsLayer.MapTip> <Border esri:GraphicsLayer.MapTipHideDelay="00:00:01.5" CornerRadius="10" BorderBrush="#FF222957" BorderThickness="3" Margin="0,0,15,15"> .......