降低 TreeViewItem 高度
我有一个带有 HierarchicalDataTemplate 的 TreeView。但最终节点之间的间距太大(见下图)。
我尝试添加一个 ItemContainStyle ,例如:
<TreeView.ItemContainerStyle>
<Style TargetType="TreeViewItem">
<Setter Property="Height" Value="15" />
</Style>
</TreeView.ItemContainerStyle>
但这限制了扩展父节点的高度 - 因此会砍掉所有子节点。如果我使用上面的方法将 MinHeight 设置为 30,我可以增加节点间距,但我想做相反的事情 - 有什么想法吗?
Ive got a TreeView with a HierarchicalDataTemplate. But the spacing between the final nodes is to big (see image below).
I tried adding a ItemContainStyle like:
<TreeView.ItemContainerStyle>
<Style TargetType="TreeViewItem">
<Setter Property="Height" Value="15" />
</Style>
</TreeView.ItemContainerStyle>
But this resticts the hight of expanded parent nodes - and hence chops off all the nodes children. If I use above to set MinHeight to say 30 I can increase the node spacing but I want to do the opposite - any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该更改树视图项目模板。
You should change treeviewitemtemplate.