文件浏览器树视图MVVM

时间:2014-08-28 18:01:33

标签: c# wpf mvvm tree

大家好,我的最终目标是使用WPF中的树视图创建一个可选择的文件浏览器。我让树视图正常显示,然后我决定转移到适当的MVVM结构,树视图将不会显示。我已经完成了一些研究,并且已经看到我需要使用带有绑定的HierarchicalDataTemplates来使其工作。我只是对如何使用HierarchialDataTemplate(children)返回复杂目录的递归函数感到困惑。

我目前正在使用TreeView类型作为VM中树视图的顶级容器。下面是我的ViewModel,它具有遍历目录的递归函数。 (如果有更简单的方法,请随时告诉我,这是我的第一次尝试:))。

        public void onBrowseCommand ( object commandInvoker )
    {
        Microsoft.Win32.OpenFileDialog win = new Microsoft.Win32.OpenFileDialog();

        Nullable<bool> result = win.ShowDialog();

        if (result == true)
        {
            string filename = win.FileName;
            rootfile= filename;

            rootfile = filename;
            int index = rootfile.Length;

            index = index - 4;
            rootfile = rootfile.Remove(index);



            //Get file version for text box
            var fversion = FileVersionInfo.GetVersionInfo(filename);
            version = fversion.FileVersion;



            //get date created 
            DateTime fdate = File.GetCreationTime(filename);
            date = fdate.ToString();

            //Display Folder Contents
            showzip(filename);
            Window_Loaded();
        }
    }
    private void showzip(string path)
    {
        try
        {
            bool isZip = path.Contains(".zip");

            if (isZip)
            {
                dynamic shellApplication = Activator.CreateInstance(Type.GetTypeFromProgID("Shell.Application"));

                dynamic compressedFolderContents = shellApplication.NameSpace(path).Items;

                string destinationPath = System.IO.Directory.GetParent(path).FullName;

                dynamic destinationFolder = shellApplication.NameSpace(destinationPath);

                destinationFolder.CopyHere(compressedFolderContents);
            }

        }
        catch (Exception ex)
        {
            throw ex;
        }
    }
    private void Window_Loaded()
    {
        string dir = rootfile;

        TreeViewItem items = new TreeViewItem();
        items.Header = dir.Substring(dir.LastIndexOf('\\') + 1);
        items.Tag = dir;
        items.FontWeight = FontWeights.Normal;
        fillFiles(items, dir);

        foreach (string s in Directory.EnumerateDirectories(dir))
        {
            TreeViewItem item = new TreeViewItem();
            item.Header = s.Substring(s.LastIndexOf('\\') + 1);
            item.Tag = s;
            item.FontWeight = FontWeights.Normal;
            fillFiles(item, s);
            FillTreeView(item, s);
            items.Items.Add(item);
        }

        foldersItem.Items.Add(items);
    }

    private void FillTreeView(TreeViewItem parentItem, string path)
    {
        foreach (string str in Directory.EnumerateDirectories(path))
        {
            TreeViewItem item = new TreeViewItem();
            item.Header = str.Substring(str.LastIndexOf('\\') + 1);
            item.Tag = str;
            item.FontWeight = FontWeights.Normal;
            parentItem.Items.Add(item);
            fillFiles(item, str);
            FillTreeView(item, str);
        }


    }

    private void fillFiles(TreeViewItem parentItem, string path)
    {
        foreach (string str in Directory.EnumerateFiles(path))
        {
            TreeViewItem item = new TreeViewItem();
            item.Header = str.Substring(str.LastIndexOf('\\') + 1);
            item.Tag = str;
            item.FontWeight = FontWeights.Normal;
            parentItem.Items.Add(item);

        }
    }

这也是我的XAML。谢谢,如果没有正确的方向推动,只需要推动。

        <TreeView DockPanel.Dock="Left" Margin="5,0,5,5" x:Name="foldersItem" ItemsSource="{Binding foldersItem}" >

        </TreeView>

1 个答案:

答案 0 :(得分:0)

您需要添加一些DataTemplates,是的。

您可以执行类似

的操作
  <TreeView.Resources>
      <HierarchicalDataTemplate DataType="{x:Type models:MyFolderModel}" ItemsSource="{Binding Files}">
          <TextBlock Text="{Binding Name}" />
      </HierarchicalDataTemplate>

      <HierarchicalDataTemplate DataType="{x:Type models:MyFileModel}">
          <TextBlock Text="{Binding Name}" />
      </HierarchicalDataTemplate>
  </TreeView.Resources>

这假设您的结构看起来像......

  public class MyFolderModel
  {
      public string Name { get; set; }
      public IEnumerable<MyFileModel> Files { get; set; }
  }

  public class MyFileModel
  {
      public string Name { get; set; }
  }

当然,还有更多的工作要做,但这应该有助于你开始。