我想在我的gridview中更改一个子字符串前景色。
我试过这样的事情:
TaskGridView.Rows[i]
.Cells[j + 2]
.Text.Substring(firstInd, length)
.ForeColor =System.Drawing.Color.DarkSalmon;
但String 类没有ForeColor属性
我怎样才能做到这一点?
我想在我的gridview中更改一个子字符串前景色。
我试过这样的事情:
TaskGridView.Rows[i]
.Cells[j + 2]
.Text.Substring(firstInd, length)
.ForeColor =System.Drawing.Color.DarkSalmon;
但String 类没有ForeColor属性
我怎样才能做到这一点?