溫馨提示×

c#怎么用datagridview添加一行數(shù)據(jù)

c#
小億
1228
2024-03-27 18:34:32
欄目: 編程語言

你可以使用以下代碼來向DataGridView添加一行數(shù)據(jù):

// 創(chuàng)建一個新的行對象
DataGridViewRow row = new DataGridViewRow();

// 添加單元格數(shù)據(jù)
row.CreateCells(dataGridView1);
row.Cells[0].Value = "Value1"; // 第一列數(shù)據(jù)
row.Cells[1].Value = "Value2"; // 第二列數(shù)據(jù)
row.Cells[2].Value = "Value3"; // 第三列數(shù)據(jù)

// 添加行到DataGridView
dataGridView1.Rows.Add(row);

在上面的代碼中,我們首先創(chuàng)建一個新的DataGridViewRow對象,然后使用CreateCells方法為該行創(chuàng)建單元格。接下來,我們?yōu)槊總€單元格設置值,最后將行添加到DataGridView中。

記得在添加行數(shù)據(jù)之前,你需要確保DataGridView已經被綁定到數(shù)據(jù)源或已設置了列。

0