gridview 字体颜色怎么改?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gridview 字体颜色怎么改?相关的知识,希望对你有一定的参考价值。
数据在CS文件里用DataSource=DataTable来绑定,然后根据DataTable里的某一列值改变字体的颜色~~请问应该怎么写程序????
十分感谢您的回答!!!!
wangziyi129
我用你的代码报错:
指定的参数已超出有效值的范围。参数名: index 不知道是哪的问题~望再指点一下
if (e.Row.RowType == DataControlRowType.DataRow)
string str = e.Row.Cells[0].Text;
//Cells[0]为第一列
if (str== "未接收")
e.Row.Cells[0].BackColor = System.Drawing.Color.Red;
//查找关键字
if (str.Contains("keyName"))
string newStr = "<font color=red>" + str + "</font>";
e.Row.Cells[0].Text = str.Replace("班keyName", newStr);
这给你懒的!我是复制我自己的代码 当然有的地方稍微有点不同
你自己看看 应该很容易解决 因为我可以运行
就是 数字改改 名字改改! 参考技术A 这个在后台数据绑定事件中进行处理:
protected void GridView_RowDataBond(object sender, GridViewRowEventArgs e)
//如果绑定的行是数据行;
if(e.Row.RowType == DataControlRowType.DataRow)
//将指定行数据的颜色该为红色;
e.Row.Cells[你要改变字体颜色的索引].ForeColor = Color.red;
=========================================
注意在后台引用类库:
Using System.Drawing.Color; 参考技术B DataGridViewCellStyle dgvc = new DataGridViewCellStyle();
dgvc.BackColor = System.Drawing.Color.Black;
dgvc.ForeColor = System.Drawing.Color.Red;
dataGridView1.RowsDefaultCellStyle= dgvc;
以上是关于gridview 字体颜色怎么改?的主要内容,如果未能解决你的问题,请参考以下文章