本帖最后由 Invoker 于 2014-5-14 14:21 编辑
- for (int i = 0; i < 10; i++)
- {
- DataGridViewRow row = this.dataGridView1.Rows[dataGridView1.NewRowIndex];
- row.Cells[0].Value = "das";
- row.Cells[1].Value = "fhg";
- row.Cells[2].Value = "gh";
- dataGridView1.Rows.Add();
- }
-
复制代码
为什么运行完成后datagridview中只有最后一行有数据,其他行都是空的 |