zoukankan      html  css  js  c++  java
  • 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中的数据有所改变或显示的时候可以添加以下的代码:
    复制代码
    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
    复制代码
    申明:转帖,来自互联网。
  • 相关阅读:
    Silverlight 2 <vsm:Setter ...和<Setter ...的区别
    [原]获取指定日期WeekOfMonth
    [转]探求真正的SOA
    [转]SOA,现在进行时
    网络尖兵(NetSniper)专题
    老公必读44条守则
    Cisco2620路由器的配置与维护
    2007年银行业从业人员资格考试试题及参考答案
    可亲的“魅力水城”聊城
    我的650装机软件(供新手参考)
  • 原文地址:https://www.cnblogs.com/djcsch2001/p/4047694.html
Copyright © 2011-2022 走看看