我正在开发一个ASP.NET网站,我有TextArea,我需要为每一行设置不同的颜色。
我的代码中有以下内容:
for (int j = 0; j < Max_Senses; j++)
{
for (int k = 0; k < n; k++)
{
if (j == 0) //first line black
TextArea1.Attributes["Style"] = "FONT-FAMILY: ''consolas';FONT-STYLE:bold; COLOR: Black; BACKGROUND-COLOR: White";
else // other lines red
TextArea1.Attributes["Style"] = "FONT-FAMILY: 'consolas';FONT-STYLE:bold; COLOR: Red; BACKGROUND-COLOR: White";
TextArea1.Value += res[k, j].PadRight(11);
}
TextArea1.Value += "\r\n";
}
它显示所有带红色的线条,而我需要第一条线为黑色!有谁能告诉我如何解决这个问题?