答案 0 :(得分:4)
您应该找到所有节点,包括后代,然后设置Checked=false
。
例如,您可以使用此扩展方法获取树的所有后代节点或节点的后代:
using System.Linq;
using System.Windows.Forms;
using System.Collections.Generic;
public static class Extensions
{
public static List<TreeNode> Descendants(this TreeView tree)
{
var nodes = tree.Nodes.Cast<TreeNode>();
return nodes.SelectMany(x => x.Descendants()).Concat(nodes).ToList();
}
public static List<TreeNode> Descendants(this TreeNode node)
{
var nodes = node.Nodes.Cast<TreeNode>().ToList();
return nodes.SelectMany(x => Descendants(x)).Concat(nodes).ToList();
}
}
然后,您可以在树或节点上使用上述方法取消选中树的所有后代节点,或取消选中节点的所有后代节点:
取消选中树的后代节点:
this.treeView1.Descendants().Where(x => x.Checked).ToList()
.ForEach(x => { x.Checked = false; });
取消选中节点的后代节点:
例如节点0:
this.treeView1.Nodes[0].Descendants().Where(x => x.Checked).ToList()
.ForEach(x => { x.Checked = false; });
不要忘记添加using System.Linq;