In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/03 Report--
To implement the Checked in the AfterCheck event of C # TreeView, there are mainly the following situations: 1. If the parent node is checked, all the child nodes will be checked 2. If the parent node is not checked, all child nodes will not be checked 3. If all the child nodes are unchecked, the parent node will not check 4. If the child node is partially checked, the parent node does not check 5. If all child nodes are checked, the parent node is checked. The following is the recursive implementation of private void SetNodeCheckStatus (TreeNode tn, bool chk) {if (tn = = null) return; / / Set child nodes check status foreach (TreeNode tnChild in tn.Nodes) {tnChild.Checked = chk; SetNodeCheckStatus (tnChild, chk);} / / Set parent check status int nNodeCount = 0; TreeNode tnParent = tn While (tnParent.Parent! = null) {nNodeCount = 0; tnParent = tnParent.Parent; foreach (TreeNode tnTmp in tnParent.Nodes) {if (tnTmp.Checked = = chk) {nNodeCount++;}} if (nNodeCount = = tnParent.Nodes.Count) tnParent.Checked = chk; else tnParent.Checked = false;}
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.