TreeView节点的Node.FullPath()方法会得到一个(“节点a\子节点b\子节点c\....”)节点在TreeView中的路径,

把节点路径保存之后,想再用保存(保存到数据库)的路径 字符串 创建节点。

C#中没有找到可以用节点路径恢复节点的方法。

以下是方法的实现(本人小白,大神勿喷):

//复制以下代码可直接调用

    /// 
    /// 用已知节点路径添加节点
    /// 
    /// TreeView
    /// TreeView.Nodes
    /// 节点路径,路径分隔符为'\'
    public static void AddL(TreeView tv,TreeNodeCollection tnc, string tnPath)
    {
        TreeNode tn = new TreeNode();
        int id = tnPath.IndexOf('\\');
        if (id != -1)
        {
            string sLeft = tnPath.Substring(0, tnPath.IndexOf('\\'));
            string sRight = tnPath.Substring(tnPath.IndexOf('\\') + 1);
            for (int i = 0; i < tnc.Count; i++)
            {//查找结点
                if (tnc[i].Text == sLeft)
                {
                    AddL(tv, tnc[i].Nodes, sRight);
                    return;
                }
            }
            tnc.Add(sLeft);
            AddL(tv, tnc[tnc.Count-1].Nodes, sRight);
        }
        else
        {
            if (FindNode(tnc,tnPath)==-1)
            {//判断子节点是否存在
                tnc.Add(tnPath);
            }
        }
    }

    /// 
    /// 遍历当前结点下的子节点
    /// 
    /// 
    /// 
    /// 返回子节点的索引,失败/没找到返回-1

private static int FindNode(TreeNodeCollection nodes,string s)
{
for (int i = 0; i < nodes.Count; i++)
{
if (nodes[i].Text ==s)
{
return i;
}
}
return -1;
}

你可能感兴趣的:(C#,TreeView)