这些功能的实现都是通过ICommand来实现的,引用的是Esri.Arcgis.SystemUI;
//这里的xxxxxxx就是你要实现的具体功能,xxxxxxx都是Controls点后都会看到的。
ICommand command = new ESRI.ArcGIS.Controls.xxxxxxxxx;
command.OnCreate(axMapControl1.Object);
command.OnClick();
axMapControl1.CurrentTool = (ITool)command;
定位的时候最后一行代码不能写....
其他功能问题持续更新......
原文:http://www.cnblogs.com/Imgiser/p/5069213.html