- 精品下载 | 实用查询 | 词典查询 | 桌面壁纸 | 网址 | 笑话 | FLASH频道 | 天气文章资讯 | 站长工具 | 证件办理 | 闪字生成 | 广告代码 | 在线手册 | 有问必答
您现在的位置: 蓝派网 >> 文章中心 >> 网络编程 >> .NET >> ASP.NET >> 正文
站内文章搜索:           

DataGrid中由某列的值设定行的颜色

作者:yhwebus    文章来源:CSDN    更新时间 :2007-5-30 15:39:17
为了实现.Net window DataGrid 的某一行可以根据该行某列的值的内容设定该行颜色的功能.

先贴一个连接,里面有DataGrid很多功能扩充的解决方案Windows Forms Datagrid

不过没有我这个需求的解决方案,最后终于还是在同事的帮助下搞定了.


由某一个单元格的值设定该单元格的颜色的实现我就不贴了,上面的连接里面有解决方案.
下面是由某列的值设定整行颜色的一个解决方案. 关键是在定制的DataGridTextBoxColumn里面添加一个DataView的属性,另外重载Paint() .  
在使用DataGridTextBoxColumn的时候,将DataGrid绑定的DataView赋值给它.

public class public class DataGridColoredTextBoxColumn : DataGridTextBoxColumn
{
  private  System.Data.DataView m_bindDataView;
  public DataView BindingDataView
  {
   get
   {
    return m_bindDataView;
   }
   set
   {
    m_bindDataView = value;
   }
  }

  protected override void Paint(System.Drawing.Graphics g,
   System.Drawing.Rectangle bounds, System.Windows.Forms.CurrencyManager
   source, int rowNum, System.Drawing.Brush backBrush, System.Drawing.Brush
   foreBrush, bool alignToRight)
  {
   // the idea is to conditionally set the foreBrush and/or backbrush
   // depending upon some crireria on the cell value
   // Here, we color anything that begins with a letter higher than 'F'
   try
   {
     //从DataView中取值,"ItemType"为行的名称
     string colValue = this.BindingDataView[rowNum]["ItemType"].ToString();     
     char val = colValue[0];

     if( val > 'F' ) //如果首字母大于 'F'
     {
      backBrush = new SolidBrush(Color.BlueViolet );
      foreBrush = new SolidBrush(Color.White);
     }
   }
   catch(Exception ex)
   {
    //empty catch
   }
   finally
   {
    // make sure the base class gets called to do the drawing with
    // the possibly changed brushes
    base.Paint(g, bounds, source, rowNum, backBrush, foreBrush, alignToRight);
   }
  }

}

使用的例子
DataGridColoredTextBoxColumn colExceptionType = new DataGridColoredTextBoxColumn();
   colItemType.BindingDataView = dtOrderItem.DefaultView; //将table的view赋值
   colItemType.HeaderText =“ItemType”;
   colItemType.MappingName = “ItemType“;
   colItemType.Width = 90;
   colItemType.NullText = "";
   tablestyle.GridColumnStyles.Add(colItemType);




发表评论】【打印此文】【关闭窗口】【点击数:
★好玩的休闲小游戏★
网友评论:
数据载入中,请稍后……