arcgis engine itable 编辑加载itable数据到toccontrol。用工具中的加载按钮加载mdb

&ArcGIS+Engine开发之TOCControl中实现图层的拖动功能
秒后自动跳转到登录页
(奖励5下载豆)
快捷登录:
举报类型:
不规范:上传重复资源
不规范:标题与实际内容不符
不规范:资源无法下载或使用
其他不规范行为
违规:资源涉及侵权
违规:含有危害国家安全等内容
违规:含有反动/色情等内容
违规:广告内容
详细原因:
任何违反下载中心规定的资源,欢迎Down友监督举报,第一举报人可获5-10下载豆奖励。
视频课程推荐
ArcGIS+Engine开发之TOCControl中实现图层的拖动功能
上传时间:
技术分类:
资源评价:
(0位用户参与评价)
已被下载&6&次
ArcGIS+Engine开发之TOCControl中实现图层的拖动功能
本资料共包含以下附件:
ArcGIS+Engine开发之TOCControl中实现图层的拖动功能.pdf
51CTO下载中心常见问题:
1.如何获得下载豆?
1)上传资料
2)评论资料
3)每天在首页签到领取
4)购买VIP会员服务,无需下载豆下载资源
5)更多途径:点击此处
2.如何删除自己的资料?
下载资料意味着您已同意遵守以下协议:
1.资料的所有权益归上传用户所有
2.未经权益所有人同意,不得将资料中的内容挪作商业或盈利用途
3.51CTO下载中心仅提供资料交流平台,并不对任何资料负责
4.本站资料中如有侵权或不适当内容,请邮件与我们联系()
5.本站不保证资源的准确性、安全性和完整性, 同时也不承担用户因使用这些资料对自己和他人造成任何形式的伤害或损失
下载1450次
下载1094次
下载1485次
下载1547次
下载1438次
相关专题推荐
本专题收录Java经典编程的实例源码,
在国内的开发语言中,java凭借这简单
本套视频教程是韩顺平老师,循序渐进
北京圣思园张龙(风中叶)老师的Java
讲述Arm嵌入式Linux系统下的C语言编程
这段视频是从尚学堂科技的教学课堂上
本套视频共78集,是由郝斌老师根据多
本视频专题共180集涵盖了C语言概述中
本视频专题共107集涵盖了Java概述、数
由传智播客毕向东老师讲解的Java基础
本专题为spring视频教程,共31集。教
本专题为C语言黑客编程系列视频教程,
本专题为韩顺平讲解的Java从入门到精
本专题为Java Web项目开发案例精粹视
SSH为struts+spring+hibernate的一个
本专题为疯狂Java李刚老师讲解的Stru
本周下载热点
意见或建议:
联系方式:
您已提交成功!感谢您的宝贵意见,我们会尽快处理21:09 提问
ArcGIS Engine10.0 显示属性表的时候不成功,代码最后两行有问题,已标注,求解。
using System.Collections.G
using System.D
using System.D
using System.L
using System.T
using System.Windows.F
using ESRI.ArcGIS.C
using ESRI.ArcGIS.G
using ESRI.ArcGIS.D
using ESRI.ArcGIS.G
namespace GIS_Design
public partial class Form1 : Form
public Form1()
ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop);
InitializeComponent();
private void axMapControl1_OnMapReplaced(object sender, ESRI.ArcGIS.Controls.IMapControlEvents2_OnMapReplacedEvent e)
if (axMapControl1.LayerCount & 0)
axMapControl2.Map = new MapClass();
for (int i = 0; i &= axMapControl1.Map.LayerCount - 1; i++)
axMapControl2.AddLayer(axMapControl1.get_Layer(i));
axMapControl2.Extent = axMapControl1.E
axMapControl2.Refresh();
private void axMapControl1_OnExtentUpdated(object sender, ESRI.ArcGIS.Controls.IMapControlEvents2_OnExtentUpdatedEvent e)
// 得到新范围
IEnvelope pEnvelope = (IEnvelope)e.newE
IGraphicsContainer pGraphicsContainer = axMapControl2.Map as IGraphicsC
IActiveView pActiveView = pGraphicsContainer as IActiveV
//在绘制前,清除axMapControl2中的任何图形元素
pGraphicsContainer.DeleteAllElements();
IRectangleElement pRectangleEle = new RectangleElementClass();
IElement pElement = pRectangleEle as IE
pElement.Geometry = pE
//设置鹰眼图中的红线框
IRgbColor pColor = new RgbColorClass();
pColor.Red = 255;
pColor.Green = 0;
pColor.Blue = 0;
pColor.Transparency = 255;
//产生一个线符号对象
ILineSymbol pOutline = new SimpleLineSymbolClass();
pOutline.Width = 3;
pOutline.Color = pC
//设置颜色属性
pColor = new RgbColorClass();
pColor.Red = 255;
pColor.Green = 0;
pColor.Blue = 0;
pColor.Transparency = 0;
//设置填充符号的属性
IFillSymbol pFillSymbol = new SimpleFillSymbolClass();
pFillSymbol.Color = pC
pFillSymbol.Outline = pO
IFillShapeElement pFillShapeEle = pElement as IFillShapeE
pFillShapeEle.Symbol = pFillS
pGraphicsContainer.AddElement((IElement)pFillShapeEle, 0);
pActiveView.PartialRefresh(esriViewDrawPhase.esriViewGraphics, null, null);
private void axMapControl2_OnMouseMove(object sender, ESRI.ArcGIS.Controls.IMapControlEvents2_OnMouseMoveEvent e)
if (e.button == 1)
IPoint pPoint = new ESRI.ArcGIS.Geometry.Point();
pPoint.PutCoords(e.mapX, e.mapY);
axMapControl1.CenterAt(pPoint);
axMapControl1.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewGeography, null, null);
private void axMapControl2_OnMouseDown(object sender, ESRI.ArcGIS.Controls.IMapControlEvents2_OnMouseDownEvent e)
if (axMapControl2.Map.LayerCount & 0)
if (e.button == 1)
IPoint pPoint = new ESRI.ArcGIS.Geometry.Point();
pPoint.PutCoords(e.mapX, e.mapY);
axMapControl1.CenterAt(pPoint);
axMapControl1.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewGeography, null, null);
else if (e.button == 2)
IEnvelope pEnv = axMapControl2.TrackRectangle();
axMapControl1.Extent = pE
axMapControl1.ActiveView.PartialRefresh(esriViewDrawPhase.esriViewGeography, null, null);
private void axMapControl1_OnMouseDown(object sender, ESRI.ArcGIS.Controls.IMapControlEvents2_OnMouseDownEvent e)
ILayer layer = new FeatureLayerClass();
private void axTOCControl1_OnMouseDown_1(object sender, ESRI.ArcGIS.Controls.ITOCControlEvents_OnMouseDownEvent e)
this.axTOCControl1.ContextMenuStrip =
IBasicMap map = new MapClass();
System.Object other =
System.Object index =
ESRI.ArcGIS.Controls.esriTOCControlItem item = ESRI.ArcGIS.Controls.esriTOCControlItem.esriTOCControlItemN
this.axTOCControl1.HitTest(e.x, e.y, ref item, ref map, ref layer, ref other, ref index);
if (item == ESRI.ArcGIS.Controls.esriTOCControlItem.esriTOCControlItemLayer && e.button == 2)
System.Drawing.Point pt = new System.Drawing.Point();
pt.X = e.x;
pt.Y = e.y;
pt = this.axTOCControl1.PointToScreen(pt);
this.contextMenuStrip4.Show(pt);
private void OpenAttribute_Click(object sender, EventArgs e)
**Form Attribute
= new Attribute(layer);
Form.Show();**
错误 CS0144: 无法创建抽象类或接口“System.Attribute”的实例
错误 CS0120: 非静态的字段、方法或属性“System.Windows.Forms.Control.Show()”要求对象引用
按赞数排序
**Form Attribute
= new Attribute(layer);
Form.Show();**
**Attribute
= new Attribute(layer);
Form.Show();
903关注|231收录
913关注|1133收录
626关注|89收录
其他相似问题<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
您的访问请求被拒绝 403 Forbidden - ITeye技术社区
您的访问请求被拒绝
亲爱的会员,您的IP地址所在网段被ITeye拒绝服务,这可能是以下两种情况导致:
一、您所在的网段内有网络爬虫大量抓取ITeye网页,为保证其他人流畅的访问ITeye,该网段被ITeye拒绝
二、您通过某个代理服务器访问ITeye网站,该代理服务器被网络爬虫利用,大量抓取ITeye网页
请您点击按钮解除封锁&

我要回帖

更多关于 arcgis将shp导入 mdb 的文章

 

随机推荐