-1

親ノードがチェックされていない場合、子ノードのチェックを外したい.子ノードの親ノードが選択されていることを確認した場合、私のコードによれば。書き込み方法ですが、親ノードのチェックを外しても、子ノードはチェックされたままです。AfterCheck イベントで次のコードを実行しました。

private bool updatingTreeView;
        private void treSelector_AfterCheck(object sender, TreeViewEventArgs e)
        {
            if (updatingTreeView) return;
            updatingTreeView = true;
            SelectParents(e.Node, e.Node.Checked);
            updatingTreeView = false;
        }

private void SelectParents(TreeNode node, Boolean isChecked)
        {
            var parent = node.Parent;

            if (parent == null)
            {
                //CheckAllChildren(treSelector.Nodes, false);
                return;
            }

            if (isChecked)
            {
                parent.Checked = true; // we should always check parent
                SelectParents(parent, true);
            }
            else
            {
                if (parent.Nodes.Cast<TreeNode>().Any(n => n.Checked))
                    return; // do not uncheck parent if there other checked nodes

                SelectParents(parent, false);
            }
        }

この問題を解決するには?

4

2 に答える 2

0

前に aftercheck イベントに次のコードを追加しましたupdatingtreeview=false

 if (e.Node.Checked==false)
            {
                if (e.Node.Nodes.Count > 0)
                {
                    /* Calls the CheckAllChildNodes method, passing in the current 
                    Checked value of the TreeNode whose checked state changed. */
                    this.CheckAllChildNodes(e.Node, e.Node.Checked);
                }
            }

そして方法は

private void CheckAllChildNodes(TreeNode treeNode, bool nodeChecked)
        {
            foreach (TreeNode node in treeNode.Nodes)
            {
                node.Checked = nodeChecked;
                if (node.Nodes.Count > 0)
                {
                    // If the current node has child nodes, call the CheckAllChildsNodes method recursively. 
                    this.CheckAllChildNodes(node, nodeChecked);
                }
            }
        }

それは正常に動作しています..

于 2013-08-22T14:07:48.960 に答える