欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

datagridview实现手动添加行数据

时间:2022-11-14 09:32:49|栏目:.NET代码|点击:

datagridview手动添加行数据

我在做软件模型界面时,通过功能按钮触发显示的datagridview中,为了方便,需要一些数据,仅写死数据就可以了,因此,不需要连接数据表,直接添加行就可以了。

代码如下:

        int index = this.dataGridView1.Rows.Add();
        this.dataGridView1.Rows[index].Cells[0].Value = "1";
        this.dataGridView1.Rows[index].Cells[1].Value = "11";
        this.dataGridView1.Rows[index].Cells[2].Value = "1111";
        this.dataGridView1.Rows[index].Cells[3].Value = "11111";
        this.dataGridView1.Rows[index].Cells[4].Value = "111111";
        this.dataGridView1.Rows[index].Cells[5].Value = "1111111";
        this.dataGridView1.Rows[index].Cells[6].Value = "*-*";

datagridview添加行的几种方式

1、数据绑定

dataGridView1.AutoGenerateColumns = true;
dataGridView1.DataSource = customersDataSet;

这样就会自动产生对应数据的行数据了。如果不自动产生列,则需手动添加列,把列的数据源属性名(DataPropertyName)设置为对应数据类的属性名。

2、手动添加

   songsDataGridView.ColumnCount = 5;
   ....
   songsDataGridView.Columns[0].Name = "Release Date";
   ....

string[] row0 = { "11/22/1968", "29", "Revolution 9", 
"Beatles", "The Beatles [White Album]" };
songsDataGridView.Rows.Add(row0);

另外,访问行单元格的方式可以这样

this.dataGridView1.Rows[1].Cells[0].Value = "new value";
//或者,等价的
this.dataGridView1[0, 1].Value = "new value";

上一篇:ASP.NET Core使用功能开关控制路由访问操作

栏    目:.NET代码

下一篇:.Net 生成压缩文件问题记录(推荐)

本文标题:datagridview实现手动添加行数据

本文地址:http://www.codeinn.net/misctech/218955.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有