1、点击添加,实例化一个DataGridView的行对象DataRow 然后把这个对象添加到DataGridView中,你的DataGridView要是可编辑状态,然后编辑数据,点保存循环读取DataGridView的行数据,存到实体类中,在通过后台SQL保存到数据库。
2、将datagridview于数据库中对应的表进行绑定,绑定完成之后直接在datagridview中进行添加就可以,自动在数据库中添加并保存。
3、创建一个表结构,每次新增的时候往表里面加一条记录,然后DataGridView再绑定表就可以了。保存的时候连接数据库+sql就完成了。
4、就是正常的添加就可以了啊。首先连接数据库 而后插入数据库的表。
5、gridview没有自带这种功能,只自带了,编辑删除(也可能是我不知道,我没用过直接可以添加一行新的)你可以模仿一个这样的功能,用js动态添加一行textbox,每个字段对应一个,你把数据添加后,点击保存,就ok了,当然你的动态添加的textbox要在gridview下面,样式要对齐,感觉上是gridview添加了一行。
DataGridViewRow row = new DataGridViewRow() //新建一个DataGridViewRowforeach (DataGridViewColumn c in dataGridView1.Columns)
{
row.Cells.Add(c.CellTemplate.Clone() as DataGridViewCell)//给行添加单元格
}
row.Cells[0].Value = reader.GetString(0) //给DataGridViewRow添加数据
row.Cells[1].Value = reader.GetString(1) //给DataGridViewRow添加数据
row.Cells[2].Value = reader.GetString(2) //给DataGridViewRow添加数据
dataGridView1.Rows.Add(row) //添加进DataGridView
可以直接数据源里加,例如:DataTable tb = new DataTable()
tb.Columns.Add(new DataColumn("姓名", typeof(string)))
tb.Columns.Add(new DataColumn("性别", typeof(string)))
tb.Columns.Add(new DataColumn("年龄", typeof(int)))
tb.Columns.Add(new DataColumn("生日", typeof(DateTime)))
for (int i = 0i <10i++)
{
DataRow dr = tb.NewRow()
dr["姓名"] = string.Format("姓名{0}", i)
dr["性别"] = string.Format("性别{0}", i)
dr["年龄"] = i
dr["生日"] = DateTime.Now.AddDays(-i)
tb.Rows.Add(dr)
}
dataGridView1.DataSource = tb
给个思路而已
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)