是否可以在数据网格视图中为单个单元格提供不同的样式,例如backcolor,fontcolor等?
我的意思并不是说整个行都是一种新的风格,只是一个特定的细胞。
答案 0 :(得分:3)
当然:
Me.myDatagridview.Rows(0).Cells(0).Style.ForeColor = Color.Aqua
答案 1 :(得分:0)
这样的东西?
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
string imageName = e.Row.Cells[0].Text.ToString();
e.Row.Cells[1].Attributes.Add(“Style”,
“background-image: url(’images/” + imageName + “‘);”);
}
}