Hi,One simple approach is to just handle the mouse enter and mouse leave events on the map element and switch the cursor in those events. It needs to be a .cur file or .ani file (there are apps you can download to convert your images) and apparently it has to be referenced by absolute path too, as opposed to relative path or pack uri.XAML:
<esri:Map x:Name="MyMap" MouseEnter="Map_MouseEnter" MouseLeave="Map_MouseLeave">
<esri:ArcGISTiledMapServiceLayer ID="MyLayer"
Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" />
</esri:Map>
CODE:
private void Map_MouseEnter(object sender, MouseEventArgs e)
{
this.Cursor = Cursors.None;
Cursor cursor = new Cursor(@"C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\Extensions\Microsoft\VsGraphics\Assets\Cursors\magicwand.cur");
this.Cursor = cursor;
}
private void Map_MouseLeave(object sender, MouseEventArgs e)
{
this.Cursor = Cursors.Hand;
}
CheersMike