首页 > 代码库 > DataGridView隔行显示不同的颜色
DataGridView隔行显示不同的颜色
如果该dataGridView是跟数据库绑定的,则可以触发DataBindingComplete事件:
1private void dataGridView1_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
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}
如果没有绑定数据库,那么当dataGridView中的数据有所改变或显示的时候可以添加以下的代码: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}
1if (this.dataGridView1.Rows.Count != 0)
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
申明:转帖,来自互联网。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
DataGridView隔行显示不同的颜色
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。