Question

I'm following the example on MSDN for using the RowPrePaint event to custom paint my rows.

http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.rowprepaint(v=vs.110).aspx

I only want to custom paint some rows, not all. I also have an alternating row style applied.

When I stepped through the debugger I was able to watch the program paint the row according to the example in MSDN (a subtle gradient), but as soon as the RowPrePaint event handler returned the program repainted the row according to its default styles.

How can I keep my custom painting style?

Was it helpful?

Solution

Set the DataGridViewRowPrePaintEventArgs.Handled = true

void dataGridView1_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs e)
{
    e.Handled =true;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top