I'm using the identify from the interactive SDK http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#IdentifyIt works good but I would like to change when it fires. Instead of using the left mouse click I was wondering if it is possible to use double click, right mouse click, or team it up with an activitatoin button. My endusers are missing firing identifies on a regular basis. Can someone help with this?
private void QueryPoint_MouseClick(object sender, ESRI.ArcGIS.Client.Map.MouseEventArgs e)
{
ESRI.ArcGIS.Client.Geometry.MapPoint clickPoint = e.MapPoint;
ESRI.ArcGIS.Client.Tasks.IdentifyParameters identifyParams = new IdentifyParameters()
{
Geometry = clickPoint,
MapExtent = MyMap.Extent,
Width = (int)MyMap.ActualWidth,
Height = (int)MyMap.ActualHeight,
LayerOption = LayerOption.visible
};