转自原文
实现的操作包括:1、打开属性表;2、编辑属性表;3、增加属性列;4、数据排序;5、字段计算……嗯,实现的功能目前就这些吧,后续还会继续跟进,还望大家多多关注……下面就分功能说说我的实现方式吧……1、打开属性表
属性表的打开是在TOC的右键菜单中打开的,首先新建一个类OpenAttribute,继承BaseCommand,OpenAttribute类的源码如下:
using System; using System.Collections.Generic; using System.Linq; using ESRI.ArcGIS.ADF.BaseClasses; using ESRI.ArcGIS.Controls; namespace MapDemo { public sealed class OpenAttribute : BaseCommand { IMapControl3 m_mapControl; AxMapControl _MapControl; public OpenAttribute(AxMapControl pMapControl) { base.m_caption = "查看属性表"; _MapControl = pMapControl; } public override void OnClick() { formTable formtable = new formTable(_MapControl, m_mapControl); formtable.Show(); } public override void OnCreate(object hook) { m_mapControl = (IMapControl3)hook; } } }
解释一下,AxMapControl参数是为了后面属性表操作时刷新视图的。接着在toc右键事件中添加代码:
m_menuLayer.AddItem(new OpenAttribute(mapMain), -1, 2, false, esriCommandStyles.esriCommandStyleIconAndText);
如此这般,这般如此,我们期待的属性表就出现了,效果呢比较丑陋,莫怪莫怪……
属性表打开之后呢,大家就看到了有关属性表操作的一些功能了,不过呢,属性表的大开的工作还尚未完成。接下来呢,添加如下引用:
完了之后,定义一下变量:
-
- AxMapControl _MapControl;
- IMapControl3 m_mapControl;
- public DataTable dt2;
- ITableSort pTs;//处理排序
- bool up = true;
- int row_index = 0;
- int col_index = 0;
- public string strAddField = "";
- RowAndCol[] pRowAndCol = new RowAndCol[10000];
- int count = 0;
这个窗口的参数为:
public formTable(AxMapControl pMapControl,IMapControl3 pMapCtrl) { InitializeComponent(); _MapControl = pMapControl; m_mapControl = pMapCtrl; }
这样,下面就可以显示属性了,在form_load事件中写如下代码:
TableShow();
此处,调用了TableShow方法,TableShow的代码如下:
这样呢,属性表的显示就完成了。2、新增字段先看看那个“新增字段”按钮的事件吧……
ILayer pLayer = (ILayer)m_mapControl.CustomProperty;
IFeatureLayer pFLayer = pLayer as IFeatureLayer;
formAddField formaddfield = new formAddField(pFLayer, gdvAttribute);
formaddfield.Show();
此处,调用了窗体formAddField ,传递的参数是IFeatureLayer pFLayer 和DataGridView gdvAttribute,那么,下面看看formAddField的设计以及实现
界面呢也是比较简单,看看formAddField 的代码:
首先,在窗体加载的时候将数据类型添加进去,之后在类型选择改变时触发其属性控制控件的显示或者改变,接下来就是最重要的添加字段了,大家注意到了,在this.Close()之后,还调用了RefreshTable 的Refresh方法,传递的参数是datagridview _dgv和Ifeaturelayer _FeatureLayer,Refresh方法主要是实现添加自断后显示的刷新,由于后面还有涉及到,所以,这个后面一并说。3、编辑属性并保存还是先看看那两个按钮的时间吧:
在保存属性表的时候,出现了pRowAndCol,对他的定义如下:
4、删除选择顾名思义,就是删除选择的行,这里的选择可以是多选,也可是单选,看看对应按钮的事件吧:
private void toolDelSelect_Click(object sender, EventArgs e) { if (((MessageBox.Show("确定要删除吗", "警告", MessageBoxButtons.YesNo)) == DialogResult.Yes)) { ILayer pLayer = (ILayer)m_mapControl.CustomProperty; IFeatureLayer pFLayer = pLayer as IFeatureLayer; ITable pTable = pFLayer as ITable; IRow pRow = pTable.GetRow(row_index); pRow.Delete(); TableShow(); MessageBox.Show("删除成功!", "提示", MessageBoxButtons.OK); _MapControl.ActiveView.Refresh(); } }
此处,看看下面这个事件:
private void gdvAttribute_CellValueChanged(object sender, DataGridViewCellEventArgs e) { //记录值一旦改变触发此事件 //在dataGridView中获取改变记录的行数,列数和记录值 pRowAndCol[count].Row = gdvAttribute.CurrentCell.RowIndex; pRowAndCol[count].Column = gdvAttribute.CurrentCell.ColumnIndex; pRowAndCol[count].Value = gdvAttribute.Rows[gdvAttribute.CurrentCell.RowIndex].Cells[gdvAttribute.CurrentCell.ColumnIndex].Value.ToString(); count++; }