-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateFeatureForm.cs
71 lines (62 loc) · 2.13 KB
/
CreateFeatureForm.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using ESRI.ArcGIS.Geodatabase;
using ESRI.ArcGIS.Carto;
using ESRI.ArcGIS.Geometry;
namespace SpatialDataManagement.空间数据管理
{
public partial class CreateFeatureForm : Form
{
IFeature pfeature;
IFeatureClass pfc;
public CreateFeatureForm(IFeature feature)
{
InitializeComponent();
pfeature = feature;
}
private void CreateFeatureForm_Load(object sender, EventArgs e)
{
pfc = pfeature.Class as IFeatureClass;
if (pfc.ShapeType == esriGeometryType.esriGeometryPoint)
{ this.Text = "创建点要素"; }
if (pfc.ShapeType == esriGeometryType.esriGeometryPolygon)
{
this.Text = "创建面要素";
}
if (pfc.ShapeType == esriGeometryType.esriGeometryPolyline)
{ this.Text = "创建线要素"; }
dataGridView1.Rows.Add(pfc.Fields.FieldCount);
for (int i = 0; i < pfc.Fields.FieldCount; i++)
{
dataGridView1[0, i].Value = pfc.Fields.get_Field(i).Name;
int count = pfc.Fields.FindField(pfc.Fields.get_Field(i).Name.ToString());
dataGridView1[1, i].Value = pfeature.get_Value(count).ToString();
}
}
private void button3_Click(object sender, EventArgs e)
{
pfeature.Delete();
this.Dispose();
}
private void button1_Click(object sender, EventArgs e)
{
try
{
int fieldindex = pfc.Fields.FindField(dataGridView1.CurrentRow.Cells[0].Value.ToString());
pfeature.set_Value(fieldindex, dataGridView1.CurrentCell.Value.ToString());
pfeature.Store();
MessageBox.Show("创建成功!");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
}