Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在TreeView使用中创建无限的子节点DataTemplate?
TreeView
DataTemplate
我阅读了很多教程,但它们都只显示手动填充的TreeView. 我需要TreeView从数据库中填充我的。
尝试使用HierarchicalDataTemplate;要从 DB 中填充数据,您必须首先获取数据,创建适当的DataModel对象,然后使用它们来填充TreeView. 我还建议您为此使用 MVVM,MVVM 使其非常易于使用TreeView。
HierarchicalDataTemplate
DataModel
看看 Josh Smith 的以下精彩文章,解释这两个(以及更多)-
使用 ViewModel 模式简化 WPF TreeView