• 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
    申明:转帖,来自互联网。
  • 相关阅读:
    Voice over IP
    [转】:TCP/IP详解学习笔记(5)
    windows phone 7 version: ObservableCollectionEx (1)
    MA0003 移动智能网原理
    TCP 网络书籍
    windows Phone 7如何实现background的情况下不丢失数据
    最近想要学习和了解的东东
    Windows phone 7 开发注意事项
    android Tab标签下得按钮
    新浪微博教程(一)
  • 原文地址:https://www.cnblogs.com/chenbg2001/p/1760760.html
Copyright © 2020-2023  润新知