要在C#中的DataGridView中添加一行数据,可以使用以下代码:
// 创建一个新的行对象
DataGridViewRow row = new DataGridViewRow();
// 创建单元格对象
DataGridViewTextBoxCell cell1 = new DataGridViewTextBoxCell();
DataGridViewTextBoxCell cell2 = new DataGridViewTextBoxCell();
DataGridViewTextBoxCell cell3 = new DataGridViewTextBoxCell();
// 设置单元格的值
cell1.Value = "Value1";
cell2.Value = "Value2";
cell3.Value = "Value3";
// 将单元格添加到行中
row.Cells.Add(cell1);
row.Cells.Add(cell2);
row.Cells.Add(cell3);
// 将行添加到DataGridView中
dataGridView.Rows.Add(row);
以上代码创建了一个新的行对象,并为每个单元格设置了值。然后将单元格添加到行中,最后将该行添加到DataGridView中。
请确保将dataGridView
替换为你实际使用的DataGridView控件的名称,并根据需要设置单元格的值。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: reference c# 功能强不强呢