我想在 gridview 中更改子字符串forecolor 。
我试过这样的事情:
TaskGridView.Rows[i]
.Cells[j + 2]
.Text.Substring(firstInd, length)
.ForeColor =System.Drawing.Color.DarkSalmon;
但字符串类
时没有 ForeColor 属性我该怎么做?
答案 0 :(得分:2)
您必须自己通过span
和style
标记将html添加到字符串中
例如:
TaskGridView.Rows[i].Cells[j + 2].Text =
TaskGridView.Rows[i].Cells[j + 2].Text.Substring(0,firstInd) +
"<span style=\"color:salmon\">" +
TaskGridView.Rows[i].Cells[j + 2].Text.Substring(firstInd, length) +
"</span>"