DataGridView 添加行 分类: DataGridView 2014-12-07 08:49 263人阅读 评论(0) 收藏

时间:2021-03-25 20:42:02

说明:

(1)dgvGoods 是DataGridView名

(2)index 是最大行索引

一、

DataGridViewRow row = new DataGridViewRow();

int index = dgvGoods.Rows.Add(row);

dgvGoods.Rows[index].Cells["列名1"].Value = 值1;

dgvGoods.Rows[index].Cells["列名2"].Value = 值2;

、、、

二、

DataTable dt=new DataTable();

dt.Rows.Add("A","B","C","D");

//dt.Rows.RemoveAt(行索引);//移除某行

dgvGoods.DataSource=dt.DefaultView;

版权声明:本文为博主原创文章,未经博主允许不得转载。