datagridview实现手动添加行数据
目录
datagridview手动添加行数据datagridview添加行的几种方式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";
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
上一篇:Android使用广播发送消息
下一篇:C#实现无损压缩图片代码示例
X 关闭
X 关闭
- 15G资费不大降!三大运营商谁提供的5G网速最快?中国信通院给出答案
- 2联想拯救者Y70发布最新预告:售价2970元起 迄今最便宜的骁龙8+旗舰
- 3亚马逊开始大规模推广掌纹支付技术 顾客可使用“挥手付”结账
- 4现代和起亚上半年出口20万辆新能源汽车同比增长30.6%
- 5如何让居民5分钟使用到各种设施?沙特“线性城市”来了
- 6AMD实现连续8个季度的增长 季度营收首次突破60亿美元利润更是翻倍
- 7转转集团发布2022年二季度手机行情报告:二手市场“飘香”
- 8充电宝100Wh等于多少毫安?铁路旅客禁止、限制携带和托运物品目录
- 9好消息!京东与腾讯续签三年战略合作协议 加强技术创新与供应链服务
- 10名创优品拟通过香港IPO全球发售4100万股 全球发售所得款项有什么用处?