1
重述有像我如何通過樹視圖
1
1.1
2
2.1
2.1.1
2.1.1.1
2.1.1.2
3
3.1
3.1.1
的TreeView Web控件,如果我有檢查[複選框] 2.1.1.2節點,我怎麼能得到這樣2,2.1,2.1.1和2.1的結果。 1.2
我試圖用這個http://msdn.microsoft.com/en-us/library/wwc698z7.aspx的例子,但它並沒有給我要求輸出。任何幫助或指示如何實現所需的輸出將不勝感激。
private void PrintRecursive(TreeNode treeNode)
{
// Print the node.
System.Diagnostics.Debug.WriteLine(treeNode.Text);
MessageBox.Show(treeNode.Text);
// Print each node recursively.
foreach (TreeNode tn in treeNode.ChildNodes)
{
PrintRecursive(tn);
}
}
// Call the procedure using the TreeView.
private void CallRecursive(TreeView treeView)
{
// Print each node recursively.
TreeNodeCollection nodes = treeView.CheckedNodes; // Modified to get the Checked Nodes
foreach (TreeNode n in nodes)
{
PrintRecursive(n);
}
}
什麼不工作這件事?你可以發佈輸出嗎? – Codeman