<esri:Map x:Name="MyMap" > <esri:ArcGISDynamicMapServiceLayer ID="Layers" Url="http://myComp:6080/ArcGIS/rest/services/rkv_web/MapServer"/> </esri:Map>
MyMap.PanTo(point);
ESRI.ArcGIS.Client.Geometry.MapPoint point = new ESRI.ArcGIS.Client.Geometry.MapPoint()
{
X = x,
Y = y,
SpatialReference = MapApplication.Current.Map.SpatialReference.WKID
};
MapApplication.Current.Map.PanTo(point);