dgvStatus
是一个包含一列的DataGridView。
以下行是添加新行
dgvStatus.Rows.Add("XYZ");
但我想更改单元格文本颜色,所以我写了以下代码
DataGridViewRow row = new DataGridViewRow();
DataGridViewCellStyle style = new DataGridViewCellStyle();
style.ForeColor = Color.Red; // the color change
row.DefaultCellStyle = style;
row.Cells[0].Value = "XYZ";
dgvStatus.Rows.Add(row);
但是这段代码给出了错误 -
如何修复它。
更新:
根据@ASh
的答案更改了我的代码
dgvStatus.Rows.Add(row);
row.Cells[0].Value = "XYZ";
然后它给出了以下错误 -
答案 0 :(得分:0)
行在将其添加到网格
之前没有单元格dgvStatus.Rows.Add(row);
row.Cells[0].Value = "XYZ";
更新
如果不起作用,请尝试:
int idx = dgvStatus.Rows.Add("test");
var row = dgvStatus.Rows[idx];
DataGridViewCellStyle style = new DataGridViewCellStyle();
style.ForeColor = Color.Red; // the color change
row.DefaultCellStyle = style;