以程式設計方式為 DataGridView 新增行
在使用 DataGridView 控制項處理資料時,您可能需要在執行時間動態新增行。以下是如何實現此目的:
使用 DataRows
<code class="language-c#">// 创建一个新的 DataTable 行 DataRow row = datatable1.NewRow(); // 设置列值 row["column2"] = "column2"; row["column6"] = "column6"; // 将新行添加到 DataTable datatable1.Rows.Add(row);</code>
加入到 DataGridView
要將新行加入 DataGridView,有幾種方法:
方法一:複製現有行
<code class="language-c#">// 克隆现有行 DataGridViewRow row = (DataGridViewRow)yourDataGridView.Rows[0].Clone(); // 设置单元格值 row.Cells[0].Value = "XYZ"; row.Cells[1].Value = 50.2; // 将新行添加到 DataGridView yourDataGridView.Rows.Add(row);</code>
方法二:以列名複製
<code class="language-c#">// 克隆现有行 DataGridViewRow row = (DataGridViewRow)yourDataGridView.Rows[0].Clone(); // 按列名设置单元格值 row.Cells["Column2"].Value = "XYZ"; row.Cells["Column6"].Value = 50.2; // 将新行添加到 DataGridView yourDataGridView.Rows.Add(row);</code>
方法三:快速插入多行
<code class="language-c#">// 使用值插入多行 this.dataGridView1.Rows.Add("five", "six", "seven","eight"); // 在索引 0 处插入一行 this.dataGridView1.Rows.Insert(0, "one", "two", "three", "four");</code>
以上是如何編程添加新行中的數據雜誌?的詳細內容。更多資訊請關注PHP中文網其他相關文章!