zoukankan      html  css  js  c++  java
  • [唐胡璐] winform中改变DataGridView中符合条件的字体的颜色

    把QTP Report中的运行结果状态根据结果显示为不同的颜色:

    private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) 
           { 
               if (e.RowIndex < 0) 
                   return; 
     
               if (e.ColumnIndex == dataGridView1.Columns["CaseStatus"].Index) 
               { 
                   if (dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString() == "Passed") 
                   { 
                       e.CellStyle.ForeColor = Color.Green; 
                   } 
                   else if (dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString() == "Failed") 
                   { 
                       e.CellStyle.ForeColor = Color.Red; 
                   } 
                   else if (dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString() == "Warning") 
                   { 
                       e.CellStyle.ForeColor = Color.Goldenrod; 
                   } 
                   else if (dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString() == "No Run") 
                   { 
                       e.CellStyle.ForeColor = Color.Gray; 
                   } 
               } 
           }
  • 相关阅读:
    Hadoop(1.2.1)安装
    ETL,BPM与ESB三者的一些感悟
    编程上面的理论支撑
    TreeSet类的排序
    List接口
    Map接口
    类和对象
    面向对象1
    IO流4
    Java面向对象
  • 原文地址:https://www.cnblogs.com/yongfeiuall/p/4134164.html
Copyright © 2011-2022 走看看