我想在TreeView中交换标准的展开图标,这可能吗?我想我需要为图像定义状态。
最佳答案
您可以在branchDelegate
中提供 TreeViewStyle
并使用styleData.isExpanded
确定其状态。例如,
TreeView {
style: TreeViewStyle {
branchDelegate: Rectangle {
width: 15; height: 15
color: styleData.isExpanded ? "red" : "green"
}
}
//...
}