我需要以編程方式更改樹視圖中節點的顏色。有沒有解決與asp.net或jQuery的? PS:我按需要綁定樹視圖節點。如何更改asp.net中treeview的少數節點的顏色?
private void BindTreeViewControl()
{
try
{
DataTable dt = new DataTable();
dt = GetData();
for (int i = 0; i < dt.Rows.Count; i++)
{
TreeNode root = new TreeNode(dt.Rows[i]["Name"].ToString(), dt.Rows[i]["Name"].ToString());
root.SelectAction = TreeNodeSelectAction.SelectExpand;
root.ShowCheckBox = true;
child.PopulateOnDemand = Convert.ToUInt32(dt.Rows[i]["Count"]) > 0; TreeViewDemo.Nodes.Add(root);
}
}
catch (Exception Ex)
{
throw Ex;
}
}
在約束你可以設置forcolor –
@Dee我們展示您的代碼樹視圖項數據進行更改。 – freebird
可否請您提供一些我可以參考的代碼或鏈接。 – Dee