我有一个数据网格视图。现在我想向其中添加新列,然后为这些列设置值。这是我的代码
DataGridViewColumn texBoxColumn = new DataGridViewColumn();
DataGridViewCell cell = new DataGridViewTextBoxCell();
texBoxColumn .Name = "River's name";
texBoxColumn .ValueType = typeof(string);
texBoxColumn .HeaderText = "name of river";
texBoxColumn .CellTemplate = cell;
dataGridView1.Columns.Insert(0, texBoxColumn );
然后,我通过查询数据库为这些列添加值
for (int j = 0; j < dataGridView1.RowCount; j++)
{
dataGridView1[0, j].Value = "Hello";
}
问题是,这些列仍然为空,不显示任何内容。有什么帮助吗?非常感谢。