HiI'm using the tooltip (see the following code):<esri:GraphicsLayer ID="AtlasPoints" >
<esri:GraphicsLayer.MapTip>
<Grid x:Name="tipGrid" IsHitTestVisible="True" x:Uid="tooltipGrid" esri:GraphicsLayer.MapTipHideDelay="00:00:0.4" >
<Border CornerRadius="2" BorderBrush="#FF222957"
BorderThickness="1" Background="LightYellow">
<TextBlock x:Name="MapItemToolTip" Margin="5" FontSize="10" Text="{Binding [MapItem].Name}" />
</Border>
</Grid>
</esri:GraphicsLayer.MapTip>
</esri:GraphicsLayer>
When someone hovers over a map point the tooltip shows. However, when someone then clicks on a map point a popup window opens. And sometimes the tooltip remains, over top of the pop up window. How can I ensure the tooltip is hidden when a map point is clicked?Thanks