将 Treeview 绑定到数据结构
我有以下类定义,如果可能的话,我想将其绑定到 WPF 中的 Treeview。不知道从哪里开始。有什么线索吗?
public class DirectoryTree
{
public String Name {get; set;}
public String FullPath { get; set; }
public List<DirectoryTree> Children { get; set; }
}
I have the following class definition where I want to bind it to a Treeview in WPF if possible. Not sure where to start on this one. Any clues?
public class DirectoryTree
{
public String Name {get; set;}
public String FullPath { get; set; }
public List<DirectoryTree> Children { get; set; }
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的代码没问题。您所需要的只是为 TreeView 定义 HierarchicalDataTemplate,并且可以使用 INotifyPropertyChanged 将两个属性添加到 DirectoryTree - IsSelected 和 IsExpanded。
It's all right with your code. All you need is to define HierarchicalDataTemplate for TreeView and may be add two properties to DirectoryTree - IsSelected and IsExpanded - using INotifyPropertyChanged.