嗨,大家好,我的最终目标是使用WPF中的“树” View 创建一个可选择的文件浏览器。我让树 View 正常显示,然后决定移至正确的MVVM结构,树 View 将不显示。我已经进行了一些研究,发现我需要使用HierarchicalDataTemplates进行绑定(bind)以使其工作。我只是对如何具有使用HierarchialDataTemplate( child )返回复杂目录的递归函数感到困惑。
我目前正在使用TreeView类型作为VM中树 View 的顶级容器。下面是我的带有递归功能的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>
最佳答案
您需要添加一些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; }
}
当然,还有更多的工作要做,但这有望帮助您入门。
关于c# - 文件浏览器树状 View MVVM,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25555206/