如何在asp.net中有条件地更改treeview节点的forecolor?
答案 0 :(得分:0)
您可以执行如下所示的代码
//Use Namespace
using System.Drawing;
//Display the Node names with and Orange font.
YourNode.ForeColor = Color.Orange;
答案 1 :(得分:0)
我可能会误解你的问题,但这里有一个想法:使用javascript和一个合适的触发器(onclick,onchange,...)运行一些旨在改变树视图颜色的javascript片段:
<input type="hidden" name="lc" value="US" />
答案 2 :(得分:0)
我试过了。这对我有用
if (Condition)
{
string str = text to change color;
string fstr = "<span style=\"color: #2E2EFE\">" + s + "</span>";
text to change color = fstr;
}