C# DataGridView控件隔行显示不同的颜色

来源:互联网 发布:淘宝被限制登录 编辑:程序博客网 时间:2024/05/29 02:50
如果该dataGridView是跟数据库绑定的,则可以触发DataBindingComplete事件:

private void dataGridView1_DataBindingComplete(object sender,DataGridViewBindingCompleteEventArgs e)  {  if (this.dataGridView1.Rows.Count != 0)  {  for (int i = 0; i < this.dataGridView1.Rows.Count;)  {  this.dataGridView1.Rows[i].DefaultCellStyle.BackColor =System.Drawing.Color.Pink;  i += 2;  }  }  }


  如果没有绑定数据库,那么当dataGridView中的数据有所改变或显示的时候可以添加以下的代码:

if (this.dataGridView1.Rows.Count != 0)  {  for (int i = 0; i < this.dataGridView1.Rows.Count;)  {  this.dataGridView1.Rows[i].DefaultCellStyle.BackColor =System.Drawing.Color.Pink;  i += 2;  }  }