0
如何在C#中的WinFormApplication TreeView中檢查節點計數?怎麼做?如何在C#中的WinFormApplication TreeView中查找檢查節點計數?
我的代碼:
int itemchecked = TreeView1.Nodes.Count;
if (itemchecked > 1)
{
messageBox.Show ("Count Checked Nodes is: " + itemchecked);
}
但是,該代碼獲取的TreeView總數節點。我想在TreeView中查找只檢查Nodes Count。
感謝的提前
[獲取樹形視圖中所有已檢查節點及其子節點的列表](https://stackoverflow.com/questions/26542568/get-list-of-all-checked-nodes-and-its-subnodes-在-樹視圖) – Alander