-
Notifications
You must be signed in to change notification settings - Fork 16
/
FrmQuery.cs
287 lines (206 loc) · 8.36 KB
/
FrmQuery.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcGIS.SystemUI;
using ESRI.ArcGIS.Geometry;
using ESRI.ArcGIS.Display;
using ESRI.ArcGIS.Geodatabase;
using ESRI.ArcGIS.Carto;
using ESRI.ArcGIS.Controls;
namespace EngineApplication
{
public partial class FrmQuery : Form
{
public IMapControl2 pMapControl;
public IMap pMap;
public int iLayerIndex;
public int iFieldIndex;
public FrmQuery(IMapControl2 pFMapControl)
{
InitializeComponent();
pMapControl = pFMapControl;
pMap = pFMapControl.Map;
}
private void FrmQuery_Load(object sender, EventArgs e)
{
ILayer pLayer;
for (int i = 0; i < pMap.LayerCount; i++)
{
pLayer = pMap.get_Layer(i);
if(pLayer is IFeatureLayer )
cmbLayers.Items.Add(pLayer.Name);
}
}
private void cmbLayers_TextChanged(object sender, EventArgs e)
{
// iLayerIndex = cmbLayers.Items.IndexOf(cmbLayers.Text);
cmbFields.Items.Clear();
}
//获得图层的字段名称
private void cmbFields_DropDown(object sender, EventArgs e)
{
cmbFields.Items.Clear();
IFeatureLayer pFeatureLayer;
ILayer pLayer;
for (int i = 0; i < pMap.LayerCount; i++)
{
pLayer = pMap.get_Layer(i);
// iLayerIndex = 0;
if (pLayer.Name.Equals (cmbLayers.SelectedItem))
{
break;
}
iLayerIndex=i;
}
pFeatureLayer = (IFeatureLayer)pMap.get_Layer(iLayerIndex);
IFields pFields;
pFields = pFeatureLayer.FeatureClass.Fields;
for (int i = 0; i < pFields.FieldCount; i++)
{
string fieldName;
fieldName = pFields.get_Field(i).Name;
cmbFields.Items.Add(fieldName);
}
}
private void btnShowAllValue_Click(object sender, EventArgs e)
{
if (cmbFields.Text=="")
{
MessageBox.Show("请选择字段名", "提示", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return;
}
listBoxValue.Items.Clear();
IFeatureLayer pFeatureLayer;
pFeatureLayer = (IFeatureLayer)pMap.get_Layer(iLayerIndex);
IFeatureCursor pFeatureCursor;
pFeatureCursor = pFeatureLayer.FeatureClass.Search(null, false);
IFeature pFeature;
pFeature = pFeatureCursor.NextFeature();
//对Table中当前字段进行排序,把结果赋给Cursor
ITable pTable = pFeatureLayer as ITable;
ITableSort pTableSort = new TableSortClass();
pTableSort.Table = pTable;
pTableSort.Fields = cmbFields.Text;
pTableSort.set_Ascending(cmbFields.Text, true);
pTableSort.set_CaseSensitive(cmbFields.Text, true);
pTableSort.Sort(null);
ICursor pCursor = pTableSort.Rows;
//数值统计
IDataStatistics pData = new DataStatisticsClass();
pData.Cursor = pCursor;
pData.Field = cmbFields.Text;
System.Collections.IEnumerator pEnumeratorUniqueValues = pData.UniqueValues;//唯一值枚举
int uniqueValueCount = pData.UniqueValueCount;//唯一值的个数
this.listBoxValue.Items.Clear();
string fldValue = null;
pEnumeratorUniqueValues.Reset();
ILayerFields pFields = pFeatureLayer as ILayerFields;
if (pFields.get_Field(pFields.FindField(cmbFields.Text)).Type == esriFieldType.esriFieldTypeString)
{
while (pEnumeratorUniqueValues.MoveNext())
{
fldValue = pEnumeratorUniqueValues.Current.ToString();
this.listBoxValue.Items.Add("'" + fldValue + "'");
}
}
else if(cmbFields .Text =="shape" )
{
fldValue = Convert.ToString(pFeature.Shape.GeometryType);
this.listBoxValue.Items.Add(fldValue);
}
else
{
while (pEnumeratorUniqueValues.MoveNext())
{
fldValue = pEnumeratorUniqueValues.Current.ToString();
this.listBoxValue.Items.Add(fldValue);
}
}
/* while(pFeature!=null)
{
string fldValue;
if (cmbFields.Text == "Shape")
{
fldValue = Convert.ToString(pFeature.Shape.GeometryType);
}
else
fldValue = Convert.ToString(pFeature.get_Value(iFieldIndex));
listBoxValue.Items.Add(fldValue);
pFeature = pFeatureCursor.NextFeature();
} */
}
private void cmbFields_TextChanged(object sender, EventArgs e)
{
iFieldIndex = cmbFields.Items.IndexOf(cmbFields.Text);
}
private void listBoxValue_DoubleClick(object sender, EventArgs e)
{
txtValue.Text = Convert.ToString(listBoxValue.SelectedItem);
}
private void btnCancle_Click(object sender, EventArgs e)
{
// this.close();
}
private void btnQuery_Click(object sender, EventArgs e)
{
IActiveView pActiveView;
pActiveView = (IActiveView)pMap;
pMap.ClearSelection();
pActiveView.Refresh();
IQueryFilter pQueryFilter = new QueryFilterClass();
IFeatureLayer pFeatureLayer;
pFeatureLayer = (IFeatureLayer)pMap.get_Layer(iLayerIndex);
String x = pMap.get_Layer(iLayerIndex).Name;
String N = pFeatureLayer.Name;
IFields pFields;
pFields = pFeatureLayer.FeatureClass.Fields;
IField pField;
pField=pFields.get_Field(iFieldIndex);
switch(pField.Type)
{
case esriFieldType.esriFieldTypeString:
pQueryFilter.WhereClause=cmbFields.Text + " = '" + txtValue.Text + "'";
break;
case esriFieldType.esriFieldTypeDouble:
case esriFieldType.esriFieldTypeInteger:
case esriFieldType.esriFieldTypeSingle:
case esriFieldType.esriFieldTypeSmallInteger:
pQueryFilter.WhereClause = cmbFields.Text + " = " + txtValue.Text ;
break;
}
IFeatureCursor pFeatureCursor;
pFeatureCursor = pFeatureLayer.FeatureClass.Search(pQueryFilter, true);
IFeature pFeature;
IFeature pFtr;
pFeature = pFeatureCursor.NextFeature();
while (pFeature!=null)
{
pMap.SelectFeature(pFeatureLayer, pFeature);
pFtr = pFeatureCursor.NextFeature();
if (pFtr == pFeature)
{
string z ="hello";
}
pFeature = pFeatureCursor.NextFeature();
}
// IFeatureSelection pSet = pFeatureLayer as IFeatureSelection;
/*ISelectionSet pS = pFeatureLayer.FeatureClass.Select(pQueryFilter, esriSelectionType.esriSelectionTypeIDSet, esriSelectionOption.esriSelectionOptionNormal, null);
IFeatureSelection pSet = pFeatureLayer as IFeatureSelection;
//pSet.SelectFeatures(pQueryFilter, esriSelectionResultEnum.esriSelectionResultNew, false);
IRgbColor pColor = new ESRI.ArcGIS.Display.RgbColorClass();
pColor.Red = 255;
pSet.SelectionColor = pColor; */
pActiveView.PartialRefresh(esriViewDrawPhase.esriViewGeoSelection, null, null);
}
private void btnTable_Click(object sender, EventArgs e)
{
FormTable fTable = new FormTable();
fTable.Show();
}
}
}