C#如何保留datagridview中的原来数据并将新的数据添加到datagridview中?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#如何保留datagridview中的原来数据并将新的数据添加到datagridview中?相关的知识,希望对你有一定的参考价值。
新建数据行添加到控件中,不会改变数据库中数据(原数据)
int index = this.dgv.Rows.Add(); //新建行this.dgv.Rows[index].Cells[0].Value = ""; //第一列
this.dgv.Rows[index].Cells[1].Value = ""; //第二列
this.dgv.Rows[index].Cells[2].Value = ""; //第三列
... 参考技术A 这个什么都不需要,只需要重新绑定一次数据源就行了。
比如说 :
你有个方法show()就是绑定你的datagrideview;
你在页面加载的时候调用show();
然后当你添加了一行数据后 点击添加,在添加按钮里 操作数据库成功后 再调用show重新绑定就可以了。 参考技术B 你直接用代码找到你的datagridview中行的个数,然后添加最后一行+1,DataGridViewRow
如何清空C#中dataGridView的某一行数据??
清空不是删除啊,也不是隐藏啊,要连接到数据库的,就把选中的那行的信息和数据库中的信息一起删除掉,是用C#写的代码,急啊
先把一个DataTable和数据库的表绑定,然后DataGridView.DataSource = DataTable
删除时
((DataTable)DataGridView.DataSource).Rows[行号].Delete();
更新时把((DataTable)DataGridView.DataSource)作为DataTable去更新数据库就行。 参考技术A 清空是指删除吗?
首先设置gridview的DataKeyNames属性绑定表的主键列
然后把GridView的AutoGenerateColumns属性设置为false
<asp:TemplateField HeaderText="删除" ShowHeader="False">
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" OnClientClick="return confirm('确定删除吗?')"
CommandName="Delete" Text="删除"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
后台代码***********************************
删除
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
//获取选中行的绑定的ID,将ID作为参数传给删除方法
string Serial = GridView1.DataKeys[e.RowIndex].Value.ToString();
CustomItemManager.DeleteCustomItems(int.Parse(Serial)))
参考技术B 全部清空:dataset.tables.clear()
单行:this.dataGridView1.Rows[0].Visible = false; 参考技术C 清空某一行?删除了不就得了。
========================================
不是删除,那是隐藏?
this.GridView1.Rows[0].Visible = false;
注明:Rows[0] =》第一行
Rows[1] =》第二行
以上是关于C#如何保留datagridview中的原来数据并将新的数据添加到datagridview中?的主要内容,如果未能解决你的问题,请参考以下文章
C# winform datagridview 编辑状态的问题
C# 需要将 sql 中的数据放入 DataGridView 并在行中按日期排序
c# 中如何把实体类绑定到dataGridView并显示出来。
c#中datagridview中datasource反复赋值没有变化?