使用SelectionChanged事件
private void axMapControl_OnSelectionChanged(object sender, EventArgs e)
{
if (iMapAction == 1)
{
//---------------------------------------Identify--------------------------------------------------//
ITableSelection pTable;
ILayer pLayer;
string pointId = string.Empty;
//获得选择的点
for (int i = 0; i < axMapControl.LayerCount; i++)
{
pTable = (ITableSelection)axMapControl.get_Layer(i);
pLayer = axMapControl.get_Layer(i);
if (pLayer.Name == "newpoint")
{
pointId = GetFieldValue(AddSelection(pTable.SelectionSet, pLayer.Name));
break;
}
pTable.Clear();
}
//判断点是不是为空
if (!string.IsNullOrEmpty(pointId))
{
//查询是否存在于站点集合中
if (hAreaIdList.IndexOf(pointId) != -1)
{
if (_pfrmRealTimeData == null)
{
_pfrmRealTimeData = new frmRealTimeData(pointId);
_pfrmRealTimeData.ShowDialog();
}
else
{
//如果不是第一点击
if (pointIdList.Count > 1)
{
_pfrmRealTimeData = null;
_pfrmRealTimeData = new frmRealTimeData(pointId);
_pfrmRealTimeData.ShowDialog();
}
}
if (pointIdList.Count < 5)
pointIdList.Add(pointId);
}
}
}
}
/// <summary>
/// 获得选择的图层
/// </summary>
/// <param name="pSelection"></param>
/// <param name="strLayer"></param>
/// <returns></returns>
private ArrayList AddSelection(ISelectionSet pSelection, string strLayer)
{
IQueryFilter pFilter = new QueryFilterClass();
ICursor pCursor;
pSelection.Search(pFilter, false, out pCursor);
ESRI.ArcGIS.Geodatabase.IRow pRow;
pRow = pCursor.NextRow();
ArrayList Keys = new ArrayList();
Keys.Add(strLayer);
if (pRow != null)
{
IRowBuffer pBuffer;
do
{
pBuffer = (IRowBuffer)pRow;
Keys.Add(pBuffer.get_Value(0));
pRow = pCursor.NextRow();
} while (pRow != null);
}
return Keys;
}
/// <summary>
/// 获得节点的值
/// </summary>
/// <param name="list"></param>
/// <returns></returns>
private string GetFieldValue(ArrayList list)
{
string pointId = string.Empty;
if (list.Count > 1)
{
string strLayer = string.Empty;
strLayer = list[0].ToString();
for (int j = 1; j < list.Count; j++)
{
IFeatureLayer pLayer;
int i;
for (i = 0; i < axMapControl.Map.LayerCount; i++)
{
if (axMapControl.Map.get_Layer(i).Name == strLayer)
break;
}
pLayer = (IFeatureLayer)axMapControl.Map.get_Layer(i);
IFeatureCursor pCursor;
IQueryFilter pFilter = new QueryFilterClass();
pFilter.WhereClause = " FID = " + list[i];
pCursor = pLayer.Search(pFilter, false);
IFeature pFeature;
IRowBuffer pRow;
pFeature = pCursor.NextFeature();
if (pFeature != null)
{
pRow = (IRowBuffer)pFeature;
for (int k = 0; k < pRow.Fields.FieldCount; k++)
{
if (pRow.Fields.get_Field(k).Name == "pointid")
{
pointId = pRow.get_Value(k).ToString();
break;
}
}
}
}
}
return pointId;
}