博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DX插件AspxGridview根据单元格值得不同设置字体颜色
阅读量:6695 次
发布时间:2019-06-25

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

///     /// 销售对账单余额为负时红色字体显示    ///     ///     ///     protected void grid_HtmlRowCreated(object sender, ASPxGridViewTableRowEventArgs e)    {        if (e.RowType != DevExpress.Web.ASPxGridView.GridViewRowType.Data) return;        string str = e.GetValue("BalanceAmount").ToString();        if (str.Contains("-"))        {            e.Row.Cells[13].Style.Add("Color", "Red");        }      }

  

转载于:https://www.cnblogs.com/streamchen/p/9584231.html

你可能感兴趣的文章
启动和停止数据库——显示例程信息
查看>>
fatal: Could not read from remote repository
查看>>
消息模板 临时参考
查看>>
手动实现Netty
查看>>
Springmvc中的拦截器interceptor及与过滤器filter的区别
查看>>
week1 - Python基础1 介绍、基本语法、流程控制
查看>>
vue作用域插槽示例
查看>>
Apache Ignite 学习笔记(四): Ignite缓存冗余备份策略
查看>>
uwsgi service 设置
查看>>
matlab x~=0
查看>>
使用线性渐变写一个歌词播放效果
查看>>
PowerDesigner最基础的使用方法入门学习
查看>>
golang -- 字符串就地取反
查看>>
Leetcode题目:Count and Say
查看>>
Linux 进程管理子系统
查看>>
MyEclipse快捷键大全
查看>>
ethereum/EIPs-1078 Universal login / signup using ENS subdomains
查看>>
android studio偏好设置
查看>>
本周学习小结(18/03 - 24/03)
查看>>
what difference between libfm and libffm
查看>>