码迷,mamicode.com
首页 > 其他好文 > 详细

实现GridControl行动态改变行字体和背景色

时间:2016-01-26 21:45:51      阅读:636      评论:0      收藏:0      [点我收藏+]

标签:

 需求:开发时遇到一个问题, 需要根据GridControl行数据不同,实现不同的效果

  在gridView的RowCellStyle的事件中实现,需要的效果

        private void gridView1_RowCellStyle(object sender, DevExpress.XtraGrid.Views.Grid.RowCellStyleEventArgs e)
        {
            string accountQuantity = gridView1.GetRowCellValue(e.RowHandle, "ACCOUNT_QUANTITY").ToString();
            string actualQuantity = gridView1.GetRowCellValue(e.RowHandle, "ACTUAL_QUANTITY").ToString();
            if (accountQuantity != actualQuantity)
            {
                // e.Appearance.BackColor = Color.Red;//改变背景色
                e.Appearance.ForeColor = Color.Red;//改变字体颜色
            }
        }

实现GridControl行动态改变行字体和背景色

标签:

原文地址:http://www.cnblogs.com/zhangjd/p/5161613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!