当前位置:网站首页>ArcEngine (six) use the tool tool to realize the zoom in, zoom out and translation of the pull box
ArcEngine (six) use the tool tool to realize the zoom in, zoom out and translation of the pull box
2022-08-03 08:01:00 【Prospector in the rice field】
平移
private void tool平移ToolStripMenuItem_Click(object sender, EventArgs e)
{
ESRI.ArcGIS.Controls.ControlsMapPanToolClass tool = new ControlsMapPanToolClass();
tool.OnCreate(MapControl.Object);
MapControl.CurrentTool = tool;
}
拉框放大
private void tool拉框放大ToolStripMenuItem_Click(object sender, EventArgs e)
{
ESRI.ArcGIS.Controls.ControlsMapZoomInToolClass tool = new ControlsMapZoomInToolClass();
tool.OnCreate(MapControl.Object);
MapControl.CurrentTool = tool;
}
拉框缩小
private void tool拉框缩小ToolStripMenuItem_Click(object sender, EventArgs e)
{
ESRI.ArcGIS.Controls.ControlsMapZoomOutToolClass tool = new ControlsMapZoomOutToolClass();
tool.OnCreate(MapControl.Object);
MapControl.CurrentTool = tool;
}
边栏推荐
- mysql的innodb存储引擎和myisam存储引擎的区别
- Data warehouse buried point system and attribution practice
- vs 2022无法安装 vc_runtimeMinmum_x86错误
- STL-vector容器
- Poke the myth of Web3?Poke the iron plate.
- Roson的Qt之旅#106 QML在图片上方放置按钮并实现点击按钮切换图片
- REST学习
- Shell脚本之一键安装mysql
- 如何在安装GBase 8c数据库的时候,报错显示“Host ips belong to different cluster?
- 9月考,如何选择靠谱正规的培训机构?
猜你喜欢
数仓埋点体系与归因实践
依赖注入(DI),自动配置,集合注入
Evaluate:huggingface评价指标模块入门详细介绍
SSM整合流程
Fortify白盒神器20.1.1下载及安装(非百度网盘)
Detailed explanation of cause and effect diagram of test case design method
学习Glide 常用场景的写法 +
如何像用自来水一样使用数据库?|腾讯云数据库TDSQL-C
学习笔记:机器学习之逻辑回归
The use of the database table structure document generation tool screw
随机推荐
智能客服,还有多少AI泡沫?
Neo4j 4.X:导入OWL文件
@Async注解的坑,小心
pyspark @udf loop using variable problem
consul理解
差分(前缀和的逆运算)
ArcEngine(四)MapControl_OnMouseDown的使用
static数据成员
最佳高质量字体
推荐系统-排序层-特征工程:用户特征、物品特征
Golang协程goroutine的调度与状态变迁分析
Poke the myth of Web3?Poke the iron plate.
sqlserver2019安装失败
千万级别的表分页查询非常慢,怎么办?
Dapr 与 NestJs ,实战编写一个 Pub & Sub 装饰器
【着色器实现HandDrawn简笔画抖动效果_Shader效果第十二篇】
推荐系统-排序层-精排模型:LR、GBDT、Wide&Deep、DCN、DIN、DIEN、MMOE、PLE
测试用例设计方法之因果图详解
【图像去雾】基于matlab暗通道和非均值滤波图像去雾【含Matlab源码 2011期】
【Kaggle实战】泰坦尼克号生存人数预测(从零到提交到Kaggle再到模型的保存与恢复)