通过获取文件路径来排列TreeView?

时间:2011-07-06 18:28:52

标签: c# .net winforms treeview treenode

我有这段代码:

    public void AddNode(string Node)
    {
        try
        {
            treeView.Nodes.Add(Node);
            treeView.Refresh();
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.ToString());
        }
    }

如您所见,此方法很简单,获取文件路径。比如C:\Windows\notepad.exe

现在我希望TreeView像FileSystem一样显示它。

-C:\
    +Windows

如果我点击'+'就会这样:

-C:\
    -Windows
       notepad.exe

以下是我将这些文章发送到上述方法时的结果:

TreeView current look

我该怎么做才会安排节点?

4 个答案:

答案 0 :(得分:1)

如果我是你,我会使用string.Split方法将输入字符串拆分为子字符串,然后搜索正确的节点以插入节点的相关部分。我的意思是,在添加节点之前,应检查节点C:\及其子节点(Windows)是否存在。

这是我的代码:

...
            AddString(@"C:\Windows\Notepad.exe");
            AddString(@"C:\Windows\TestFolder\test.exe");
            AddString(@"C:\Program Files");
            AddString(@"C:\Program Files\Microsoft");
            AddString(@"C:\test.exe");
...

        private void AddString(string name) {
            string[] names = name.Split(new char[] { '\\' }, StringSplitOptions.RemoveEmptyEntries);
            TreeNode node = null;
            for(int i = 0; i < names.Length; i++) {
                TreeNodeCollection nodes = node == null? treeView1.Nodes: node.Nodes;
                node = FindNode(nodes, names[i]);
                if(node == null)
                    node = nodes.Add(names[i]);
            }
        }

        private TreeNode FindNode(TreeNodeCollection nodes, string p) {
            for(int i = 0; i < nodes.Count; i++)
                if(nodes[i].Text.ToLower(CultureInfo.CurrentCulture) == p.ToLower(CultureInfo.CurrentCulture))
                    return nodes[i];
            return null;
        }

答案 1 :(得分:0)

如果你在 Windows窗体(我猜是这样),你可以实现IComparer类并使用TreeView.TreeViewNodeSorter属性:

public class NodeSorter : IComparer
{
    // Compare the length of the strings, or the strings
    // themselves, if they are the same length.
    public int Compare(object x, object y)
    {
        TreeNode tx = x as TreeNode;
        TreeNode ty = y as TreeNode;

        // Compare the length of the strings, returning the difference.
        if (tx.Text.Length != ty.Text.Length)
            return tx.Text.Length - ty.Text.Length;

        // If they are the same length, call Compare.
        return string.Compare(tx.Text, ty.Text);
    }
}

答案 2 :(得分:0)

父母和孩子没有被区分的问题是什么?

树中的每个节点也有一个Nodes属性,表示其子节点的集合。您的AddNode例程需要更改,以便您可以指定要向其添加子节点的父节点。像:

TreeNode parent = //some node
parent.Nodes.Add(newChildNode);

如果您希望它只填充路径并找出父子关系本身,您将不得不编写一些代码来解析路径,并根据路径段识别父节点。

答案 3 :(得分:0)

试着看看这个Filesystem TreeView。它应该完全符合您的要求。