假设我想将listview中第二个Rectangle项的颜色更改为红色 我该怎么做?
这是我的ListView:
ListView {
id: myList
model: myDataModel
delegate: Rectangle {
color: "green"
height: 20
width: 100
onClicked{
//Do something
}
}
}
答案 0 :(得分:5)
我找到了它!
var myListItemObject = ListView.contentItem.children [1]
myListItemObject .color =“red”