溫馨提示×

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

c#
小億
779
2024-01-09 00:26:14
欄目: 編程語言

要在C#中的DataGridView中添加一行數(shù)據(jù),可以使用以下代碼:

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

// 創(chuàng)建單元格對象
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);

以上代碼創(chuàng)建了一個新的行對象,并為每個單元格設置了值。然后將單元格添加到行中,最后將該行添加到DataGridView中。

請確保將dataGridView替換為你實際使用的DataGridView控件的名稱,并根據(jù)需要設置單元格的值。

0