我尝试使用以下代码更改 DataGridView 的所有行的 ForeColor:
private void dgv_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) {
if (e.RowIndex >= 0) {
DataGridViewRow row = dgv.Rows[e.RowIndex];
e.CellStyle.ForeColor = Color.Green;
}
}
但是第一行没有收到更新。
其他人有这个问题吗?
非常感谢。