实现GridControl行动态改变行字体和背景色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现GridControl行动态改变行字体和背景色相关的知识,希望对你有一定的参考价值。
需求:开发时遇到一个问题, 需要根据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行动态改变行字体和背景色的主要内容,如果未能解决你的问题,请参考以下文章
[DevExpress]GridControl单元格背景色和单元格文字颜色设置
dev 控件,在gridcontrol中如何实现对满足条件的某一行进行涂色(改变背景颜色即可)