this.dataGridView1.Rows[i].Cells[0]
Dev的什么版本才支持这种方式
如何设置gridview的每个单元格的颜色
gridView[column, row].Style.ForeColor = Color.Red; 这种格式不行
dataGridView1.Rows[1].Cells[i].Style.BackColor = Color.Blue; 也不行
private
void
gridView2_RowCellStyle(
object
sender, DevExpress.XtraGrid.Views.Grid.RowCellStyleEventArgs e)
{
if
(e.RowHandle == 2 && e.Column.FieldName ==
"NAME"
)
{
e.Appearance.ForeColor = Color.Red;
}
}
e.Column.FieldName ==
"NAME"时
,某一两列的单元格会延时,颜色不会及时更改,需要再点击一下此行才可以