标签:qml ack tran pre color rect mod height com
这里使用了高亮代理
import QtQuick 2.0
Item {
id: root
width: 1920
height: 1080
Component {
id: highlightDelegate
Rectangle {
width: 100
height: 50
color: "transparent"
border.color: "red"
z:1
}
}
ListView {
width: 600
height: 800
anchors.centerIn: parent
model: 5
delegate: Rectangle {
id: delegateItem
width: 100
height: 50
color: "lightblue"
Text {
anchors.centerIn: parent
text: index
font.pixelSize: 30
}
border.color: "black"
MouseArea {
anchors.fill: parent
onClicked: delegateItem.ListView.view.currentIndex = index
}
}
highlight: highlightDelegate
}
}
标签:qml ack tran pre color rect mod height com
原文地址:https://www.cnblogs.com/xuexiwrite/p/9722017.html