我想知道为什么这不起作用?
ListView {
id: root
property var selection: QtObject {}
...
delegate: MyView {
focused: ListView.isCurrentItem
selected: root.selection[index] === true
Rectangle {
id: selectionOverlay
anchors.fill: parent
color: "red"
opacity: 0.3
visible: selected
}
}
Keys.onPressed: if (event.key === Qt.Key_Space) {
if(!root.selection[root.currentIndex])
root.selection[root.currentIndex] = true;
else
root.selection[root.currentIndex] = false;
}
}
即,委托对选择对象的更改没有反应。只有在重新创建索引的委托时才能看到选择(例如,当滚动得足够远并且返回时)。
将root.selection[index]
更改为ListView.view.selection[index]
也无济于事。
我需要在ListView级别上进行选择以管理多选项。 一直在敲打我的脑袋。
谢谢!
答案 0 :(得分:1)
问题在于,通过更改selection
属性的子属性,selection
属性的更改信号本身不会被发出。
QML绑定机制仅在属性本身的值发生变化时才有效。但在您的情况下,selection
点的对象永远不会更改,因此如果selection
的某些子属性发生更改,您将无法收到通知。
作为一种解决方法,一旦任何子属性发生变化,您就可以重新分配/刷新整个选择对象。