Csharp: node selected by default in the initialization settings of TreeView

Source: Internet
Author: User

/// <Summary> /// set the node to be searched as the selected node /// tu juwen /// 2013-07-15 /// </summary> /// <param name =" trvToSrch "> </param> // <param name =" strToSrch "> </param> // <returns> </returns> public TreeNode srchTxtInSelectTreeView (TreeView trvToSrch, string strToSrch) {// check if the treeView is not NULL if (trvToSrch = null) return null; // loop through the nodes in the treeview's root nodes for (int I = 0; I <trvToS Rch. Nodes. Count; I ++) {TreeNode trvNode = srchTxtInSelectTreeViewNode (trvToSrch. Nodes [I], strToSrch); if (trvNode! = Null) return trvNode;} return null ;} /// <summary> /// find a node /// </summary> /// <param name = "trvNode"> </param> /// <param name = "strToSrch"> </param> // <returns> </returns> public TreeNode srchTxtInSelectTreeViewNode (TreeNode trvNode, string strToSrch) {// check if the treeView is not NULL if (trvNode = null) return null; if (trvNode. text = strToSrch) return trvNode; // loop through the nodes In the treeview's sub nodes for (int I = 0; I <trvNode. nodes. count; I ++) {// recursive call to itself to check lower level nodes TreeNode retTrvNode = srchTxtInSelectTreeViewNode (trvNode. nodes [I], strToSrch); if (retTrvNode! = Null) return retTrvNode;} return null ;}

 

// TreeView initialization settings default selection node treeView1.SelectedNode = srchTxtInSelectTreeView (treeView1, "Shenzhen ");

 

Related Article

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.