在我的项目中,我需要多次操作DataGridView列,所以我使用下面的代码添加一列:
DataGridViewColumn cb = new DataGridViewColumn();
cb.HeaderText = "test";
cb.Name = "test";
cb.Visible = true;
cb.Width = 40;
output_table.Columns.Add(cb);
它工作但是细胞的类型不是我需要的,所以我尝试了下面的代码来指定细胞的类型:
DataGridViewCell cell = new DataGridViewTextBoxCell();
cb.CellTemplate = cell;
我收到编译错误,因为“InvalidCastException未处理”
任何建议???