qml设置ListView选中高亮
时间: 2023-07-22 09:34:23 浏览: 144
要设置ListView选中高亮,可以使用ListView的highlight属性。具体方法如下:
1. 在ListView的外部包裹一个Rectangle,这个Rectangle的border属性为0,用来覆盖默认的选中高亮背景。
```
Rectangle {
id: rect
anchors.fill: parent
border.width: 0
}
```
2. 在ListView中设置highlight属性,将其设为一个Rectangle,用来作为选中高亮背景。
```
ListView {
id: listView
anchors.fill: parent
highlight: Rectangle {
color: "lightblue"
opacity: 0.5
}
//...
}
```
3. 在ListView的delegate中添加一个MouseArea,用来处理选中事件。在MouseArea的onClicked信号中,设置选中项的背景色。
```
ListView {
id: listView
//...
delegate: Rectangle {
width: parent.width
height: 50
color: listView.currentIndex === index ? "lightblue" : "white"
MouseArea {
anchors.fill: parent
onClicked: {
listView.currentIndex = index
rect.forceActiveFocus() //强制Rectangle获取焦点,使选中高亮生效
}
}
}
}
```
这样就可以在ListView中设置选中高亮了。注意,如果没有设置forceActiveFocus,选中高亮可能不会生效。
阅读全文