我有一个班级:
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控制器? ,当选择项目时如何访问它的元数据?
感谢您的帮助。
答案 0 :(得分:2)
要绑定到treeView的嵌套对象集合,您需要在视图中定义Hierarchical DataTemplate
和DataTemplate
。如果您对此感到陌生,这些链接可能对您有所帮助 -
WPF TreeView binding和Binding with treeView或让搜索引擎为您赢得荣誉 - Search for Binding to treeView in WPF