博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
aspxGridview 根据单元格值得不同,设置单元格字体的颜色(设置和读取值)
阅读量:5060 次
发布时间:2019-06-12

本文共 629 字,大约阅读时间需要 2 分钟。

protected void ASPxGridView1_HtmlRowCreated(object sender,DevExpress.Web.ASPxGridView.ASPxGridViewTableRowEventArgs e)        {            if (e.RowType != DevExpress.Web.ASPxGridView.GridViewRowType.Data) return;            string errorPercent = e.GetValue("ErrorPercent").ToString();            errorPercent = errorPercent.Substring(0, errorPercent.Length - 1);            float errorPercentInt = float.Parse(errorPercent);            if (errorPercentInt >= 3 || errorPercentInt<=-3)            {                e.Row.Cells[11].Style.Add("color", "Red");            }        }

 

转载于:https://www.cnblogs.com/qqhfeng/p/9874159.html

你可能感兴趣的文章
STL——配接器、常用算法使用
查看>>
第9课 uart
查看>>
Range和xrange的区别
查看>>
BZOJ 1010 [HNOI2008]玩具装箱 (斜率优化DP)
查看>>
java-动态规划算法学习笔记
查看>>
STL容器之vector
查看>>
Linux 内核中断内幕
查看>>
DNS负载均衡
查看>>
无法向会话状态服务器发出会话状态请求
查看>>
数据中心虚拟化技术
查看>>
Oracle OEM 配置报错: No value was set for the parameter DBCONTROL_HTTP_PORT 解决方法
查看>>
01入门
查看>>
python正则表达式
查看>>
嵌套循环连接(nested loops join)原理
查看>>
shell统计特征数量
查看>>
复习文件操作
查看>>
C#Hashtable与Dictionary性能
查看>>
10个让你忘记 Flash 的 HTML5 应用演示
查看>>
8个Python面试必考的题目,小编也被坑过 ToT
查看>>
SQL Server 使用作业设置定时任务之一(转载)
查看>>