I would like to change the BackColor a datagridview row. While searching around it 's clear that I will have to access the GridDataRowElement or GridDataCellElement to do it. From that after creating a variable of the type we can call something Row
Element.BackColor = Color.Gray or CellElement.BackColor = Color.Gray
I have already tried this but it only colors row while the mouse is hovering at it (very strange...)
Now with the code below as a pointer, my problem is that I'm trying to cast a gridview row as GridDataRowElement it always results in epic failure.
Could someone please point me to the right direction on how this can be done?
Thanks