In my DataGridView, I would like the whole row to be of a unique color when the user is editing a cell on that row. I was thinking something like this:
Code:
private void dgv_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
dgv.CurrentRow ???
??? SelectionBackColor = Color.Red;
}