当前位置:网站首页>ArcEngine (5) use the ICommand interface to achieve zoom in and zoom out
ArcEngine (5) use the ICommand interface to achieve zoom in and zoom out
2022-08-03 08:03:00 【Rice paddies outlook】
Zoom in
private void iCommand shrinkToolStripMenuItem_Click(object sender, EventArgs e){ICommand command = new ESRI.ArcGIS.Controls.ControlsMapZoomOutFixedCommandClass();command.OnCreate(MapControl.Object);command.OnClick();}Zoom out
private void iCommand shrinkToolStripMenuItem_Click(object sender, EventArgs e){ICommand command = new ESRI.ArcGIS.Controls.ControlsMapZoomOutFixedCommandClass();command.OnCreate(MapControl.Object);command.OnClick();}边栏推荐
- 推荐系统-排序层-精排模型:LR、GBDT、Wide&Deep、DCN、DIN、DIEN、MMOE、PLE
- Golang协程goroutine的调度与状态变迁分析
- Pop Harmony Basics Big Notes
- Detailed explanation of cause and effect diagram of test case design method
- mysql的innodb存储引擎和myisam存储引擎的区别
- MySQL or使索引失效
- volta管理node版本
- 计算机网络常见面试题总结
- 【云原生--Kubernetes】Pod重启策略
- WordPress主题-B2美化通用子主题商业运营版
猜你喜欢
随机推荐
跨域嵌套传递信息(iframe)
Oracle Rac Cluster File Directory Migration
JS作用对象API技巧
mysql服务器上的mysql这个实例中表的介绍
mysql存生僻字奇怪问题,mysql为什么不能辨别mb4字符?
酷雷曼上新6大功能,全景营销持续加码
rust 学习笔记
002-字段不为null
如何在安装GBase 8c数据库的时候,报错显示“Host ips belong to different cluster?
Docker启动mysql
Nanny level explains Transformer
Evaluate:huggingface评价指标模块入门详细介绍
《剑指Offer》刷题之打印从1到最大的n位数
Golang协程goroutine的调度与状态变迁分析
推荐系统-排序层-特征工程:用户特征、物品特征
LeetCode 264:丑数
训练正常&异常的GAN损失函数loss变化应该是怎么样的
LiveData 记录下 +
postman将接口返回结果生成csv文件到本地
Arduino框架下对ESP32 NVS非易失性存储解读以及应用示例









