I have a dataGridView object that is populated with data. I want to click a button and have it change the color of the background of the cell. This is what I currently have<
This works for me
dataGridView1.Rows[rowIndex].Cells[columnIndex].Style.BackColor = Color.Red;