ArcGIS API for Windows Phone - Library Reference
MapTip Property
See Also  Example Send comments on this topic
ESRI.ArcGIS.Client Namespace > Graphic Class : MapTip Property

Gets or sets the map tip displayed when the mouse hovers on the graphic.

Syntax

Visual Basic (Declaration) 
Public Property MapTip As FrameworkElement
C# 
public FrameworkElement MapTip {get; set;}

Remarks

You can use the binding expression to bind to the DataContext property of the Graphic.

Example

XAMLCopy Code
<esri:Graphic>
  <esri:Graphic.MapTip>
    <StackPanel Orientation="Horizontal" Background="White">
      <TextBlock Text="Feature ID:" />
      <TextBlock Text="{Binding}" />
    </StackPanel>
  </esri:Graphic.MapTip>
<esri:Graphic>

Requirements

Target Platforms:Windows Phone 7

See Also

© ESRI, Inc. All Rights Reserved.