DataGridView隔行显示不同的颜色

简介:   如果该dataGridView是跟数据库绑定的,则可以触发DataBindingComplete事件:  1private   void   dataGridView1_DataBindingComplete(object   sender,   DataGridViewB...

 

 
如果该dataGridView是跟数据库绑定的,则可以触发DataBindingComplete事件:
复制代码
 1 private   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中的数据有所改变或显示的时候可以添加以下的代码:
复制代码
1 if (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
复制代码
申明:转帖,来自互联网。
相关文章
|
6月前
|
C#
C# DEV 关于设置gridview 指定单元格字体为红色
C# DEV 关于设置gridview 指定单元格字体为红色
如何将DataGridView中的滚动条显示出来
1、选项设置   DataGridView有一个ScrollBars,可以设置水平滚动条,垂直滚动条,或者两种包含。   2、实际运行效果
5176 0
|
19天前
|
开发工具
如何设置单元格的填充颜色?
【10月更文挑战第22天】如何设置单元格的填充颜色?
17 2
C#编程-78:DataGridView隔行显示不同颜色
C#编程-78:DataGridView隔行显示不同颜色
323 0
C#编程-78:DataGridView隔行显示不同颜色
C#编程-76:DataGridView当前行显示不同颜色
C#编程-76:DataGridView当前行显示不同颜色
237 0
C#编程-76:DataGridView当前行显示不同颜色