没有啊!!!
用的还是原数据,是对创建的新列的进行Cell赋值!但就是不行.

解决方案 »

  1.   

    测试情况,新建DataGridView1.
                this.dataGridView1.Columns.Add("继承", "继承");
                this.dataGridView1.Rows.Add(10);
                this.dataGridView1.Rows[2].Cells["继承"].Value = "aaa";正常,而且将DataGridView原Cell数据赋值,例如:this.dataGridView1.Rows[2].Cells["名称"].Value = "aaa";   也是正常的,大家推测下大概是什么问题?
      

  2.   

    DataColumn 继承 = new DataColumn("继承", DataType);
    dt.Columns.Add(继承);
    ......