DataGridView动态添加行

作者:追风剑情 发布于:2014-4-25 22:55 分类:C#

  1. DataGridViewRow firstRow = dataGridView1.Rows[0];
  2. dataGridView1.AllowUserToAddRows = false;//不显示带*号的行
  3.  
  4. DataGridViewRow row;
  5. for (int i = 0; i < 10; i++)
  6. {
  7. row = firstRow.Clone() as DataGridViewRow;
  8.  
  9. row.Cells[0].Value = i;
  10. row.Cells[1].Value = "tiankt";
  11. row.Cells[2].Value = "问题";
  12. row.Cells[3].Value = "答案0";
  13. row.Cells[4].Value = "答案1";
  14. row.Cells[5].Value = "答案2";
  15. row.Cells[6].Value = "答案3";
  16. row.Cells[7].Value = "正确答案";
  17. row.Cells[8].Value = i;
  18.  
  19. dataGridView1.Rows.Add(row);
  20. }
dataview.png

 

 

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号