码迷,mamicode.com
首页 > Windows程序 > 详细

[WinForm]TreeView 检查节点文本是否存在

时间:2015-04-14 09:44:01      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

关键代码:

        #region 检查节点文本是否存在

        /// <summary>
        /// 检查节点文本是否存在
        /// </summary>
        /// <param name="tree">TreeView</param>
        /// <param name="key">节点文本</param>
        /// <returns>是否存在</returns>
        public static bool CheckNodeExist(this TreeView tree, string key)
        {
            bool _exists = false;
            for (int i = 0; i < tree.Nodes.Count; i++)
            {
                TreeNode _curNode = tree.Nodes[i];
                if (string.Compare(_curNode.Text, key, true) == 0)
                    _exists = true;
                else
                    _exists = CheckNodeExist(tree.Nodes[i], key);
            }
            return _exists;
        }

        private static bool CheckNodeExist(TreeNode node, string key)
        {
            for (int i = 0; i < node.Nodes.Count; i++)
            {
                TreeNode _node = node.Nodes[i];
                if (string.Compare(_node.Text.Trim(), key, true) == 0)
                {
                    return true;
                }
                if (_node.Nodes.Count > 0)
                {
                    CheckNodeExist(_node, key);
                }
            }
            return false;
        }

        #endregion 检查节点文本是否存在

希望有所帮助!

[WinForm]TreeView 检查节点文本是否存在

标签:

原文地址:http://www.cnblogs.com/Yan-Zhiwei/p/4423962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!