[WPF系列]-TreeView的常用事项
引言
项目经常会用Treeview来组织一些具有层级结构的数据,本节就将项目使用Treeview常见的问题作一个总结。
DataBinding数据绑定
DataTemplate自定义
<HierarchicalDataTemplate DataType="{x:Type viewModels:FieldViewModel}" ItemsSource="{Binding SubViewModels}"> <StackPanel Orientation="Horizontal"> <TextBlock Text="F:" Style="{StaticResource IconTextStyle}" Background="LightCoral"/> <TextBlock Text="{Binding CurrentEntity.Value.Name}" Focusable="True"> <TextBlock.ContextMenu> <ContextMenu> <MenuItem Header="New Well" Command="{Binding AddCommand}" CommandParameter="{Binding Path=CurrentEntity.Value}" /> <MenuItem Header="Delete" Command="{Binding DeleteCommand}" CommandParameter="{Binding Path=CurrentEntity.Value}" /> </ContextMenu> </TextBlock.ContextMenu> </TextBlock> </StackPanel> </HierarchicalDataTemplate>
Style自定义
Events顺序
SelectedItemChanged 发生在TreeView向新selectedItem聚焦(set focus on its new selected item).
一句话: selectedItemChanged –>set foucs on the new selected item.
参考
作者:旭东
出处:http://www.cnblogs.com/HQFZ
关于作者:专注于微软平台项目架构、管理和企业解决方案。现主要从事WinForm、ASP.NET、WPF、WCF、等方面的项目开发、架构、管理。如有问题或建议,请不吝指教!
本文版权归作者,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接。如有问题,可以联系我,非常感谢。
如果您该文觉得不错或者对你有帮助,请点下推荐,让更多的朋友看到,谢谢!