C # decompressing all winform Treeview checkbox

Source: Internet
Author: User

C # decompressing all winform Treeview checkbox

Private void treeviewappsaftercheck (Object sender, treevieweventargs E)

{

If (E. Action! = Treeviewaction. Unknown)

{

/*

* Because the status of each node check box changes, the aftercheck event is triggered,

* To avoid entering recursion infinitely, We need to judge the status of treeviewaction,

* The treeviewaction status of all nodes automatically selected by the Code is unknown,

* This prevents problems when calling the recursive process.

*/

Checkallchildnodes (E. node, E. node. Checked );

// Select the parent node when all child nodes are selected

Bool bolchecked = true;

If (E. node. parent! = NULL)

{

For (INT I = 0; I <E. node. Parent. nodes. Count; I ++)

{

If (E. node. Parent. nodes [I]. Checked = false)

Bolchecked = false;

}

E. node. Parent. Checked = bolchecked;

}

}

}

Public void checkallchildnodes (treenode, bool nodechecked)

{

Foreach (treenode node in treenode. nodes)

{

Node. Checked = nodechecked;

If (node. nodes. Count> 0)

{

This. checkallchildnodes (node, nodechecked );

}

}

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.