[讨论]怎么让DataGridView里不同的行显示不同的颜色?
怎么能设置DataGridView控件里各行的颜色呢?大家给点意见!谢谢了!
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (e.RowIndex % 2 == 0)
{
e.CellStyle.BackColor = System.Drawing.Color.Red;
}
}