gridview 字体颜色怎么改?
数据在CS文件里用DataSource=DataTable来绑定,然后根据DataTable里的某一列值改变字体的颜色~~请问应该怎么写程序????十分感谢您的回答!!!...
数据在CS文件里用DataSource=DataTable来绑定,然后根据DataTable里的某一列值改变字体的颜色~~请问应该怎么写程序????
十分感谢您的回答!!!!
wangziyi129
我用你的代码报错:
指定的参数已超出有效值的范围。参数名: index 不知道是哪的问题~望再指点一下 展开
十分感谢您的回答!!!!
wangziyi129
我用你的代码报错:
指定的参数已超出有效值的范围。参数名: index 不知道是哪的问题~望再指点一下 展开
3个回答
展开全部
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
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);
}
}
}
这给你懒的!我是复制我自己的代码 当然有的地方稍微有点不同
你自己看看 应该很容易解决 因为我可以运行
就是 数字改改 名字改改!
{
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);
}
}
}
这给你懒的!我是复制我自己的代码 当然有的地方稍微有点不同
你自己看看 应该很容易解决 因为我可以运行
就是 数字改改 名字改改!
AiPPT
2024-09-19 广告
2024-09-19 广告
随着AI技术的飞速发展,如今市面上涌现了许多实用易操作的AI生成工具1、简介:AiPPT: 这款AI工具智能理解用户输入的主题,提供“AI智能生成”和“导入本地大纲”的选项,生成的PPT内容丰富多样,可自由编辑和添加元素,图表类型包括柱状图...
点击进入详情页
本回答由AiPPT提供
展开全部
这个在后台数据绑定事件中进行处理:
protected void GridView_RowDataBond(object sender, GridViewRowEventArgs e)
{
//如果绑定的行是数据行;
if(e.Row.RowType == DataControlRowType.DataRow)
{
//将指定行数据的颜色该为红色;
e.Row.Cells[你要改变字体颜色的索引].ForeColor = Color.red;
}
}
=========================================
注意在后台引用类库:
Using System.Drawing.Color;
protected void GridView_RowDataBond(object sender, GridViewRowEventArgs e)
{
//如果绑定的行是数据行;
if(e.Row.RowType == DataControlRowType.DataRow)
{
//将指定行数据的颜色该为红色;
e.Row.Cells[你要改变字体颜色的索引].ForeColor = Color.red;
}
}
=========================================
注意在后台引用类库:
Using System.Drawing.Color;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
DataGridViewCellStyle dgvc = new DataGridViewCellStyle();
dgvc.BackColor = System.Drawing.Color.Black;
dgvc.ForeColor = System.Drawing.Color.Red;
dataGridView1.RowsDefaultCellStyle= dgvc;
dgvc.BackColor = System.Drawing.Color.Black;
dgvc.ForeColor = System.Drawing.Color.Red;
dataGridView1.RowsDefaultCellStyle= dgvc;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询