private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
{
int del = Convert.ToInt32(dataGridView1.Rows[e.RowIndex].Cells[0].Value);
if (del == 1)
dataGridView1.Rows[e.RowIndex].DefaultCellStyle.BackColor = System.Drawing.Color.LightPink;
}
- 本文标题: winform如何改变dataGridView 多行的背景色
- 文章分类:【WinForm/WPF】
- 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.