如何使用项目集合绑定Treeview

时间:2012-07-21 19:51:59

标签: wpf vb.net treeview

我有一个班级:

Public Class treeModel

    Public Property title As String
    Public Property type As String
    Public Property id As String
    Public Property items As List(Of treeModel) 'Sons

End Class

此类包含有关每个项目的元数据及其子列表,如何将此类绑定到WPF Treeview控制器? ,当选择项目时如何访问它的元数据?

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

要绑定到treeView的嵌套对象集合,您需要在视图中定义Hierarchical DataTemplateDataTemplate。如果您对此感到陌生,这些链接可能对您有所帮助 -

WPF TreeView bindingBinding with treeView或让搜索引擎为您赢得荣誉 - Search for Binding to treeView in WPF