2{
3 if (this.dataGridView1.Rows.Count != 0)
4 {
5 for (int i = 0; i < this.dataGridView1.Rows.Count; )
6 {
7 this.dataGridView1.Rows[i].DefaultCellStyle.BackColor = System.Drawing.Color.Pink;
8 i += 2;
9 }
10 }
11}
2 {
3 for (int i = 0; i < this.dataGridView1.Rows.Count; )
4 {
5 this.dataGridView1.Rows[i].DefaultCellStyle.BackColor = System.Drawing.Color.Pink;
6 i += 2;
7 }
8 }
9