QtQuick:更改 TreeView 中的展开图标
Posted
技术标签:
【中文标题】QtQuick:更改 TreeView 中的展开图标【英文标题】:QtQuick: Change expand icon in TreeView 【发布时间】:2016-04-22 20:35:52 【问题描述】:我想在 TreeView 中交换标准展开图标,可以吗?我想我需要为图像定义状态。
【问题讨论】:
【参考方案1】:您可以在TreeViewStyle
中提供branchDelegate
并使用styleData.isExpanded
来确定其状态。例如,
TreeView
style: TreeViewStyle
branchDelegate: Rectangle
width: 15; height: 15
color: styleData.isExpanded ? "red" : "green"
//...
【讨论】:
以上是关于QtQuick:更改 TreeView 中的展开图标的主要内容,如果未能解决你的问题,请参考以下文章
求:WPF中TreeView如何实现展开一个节点其他节点关闭!