如何通过它的索引访问QtQuick ListView中的项目属性?

时间:2014-05-20 15:51:09

标签: qml

假设我想将listview中第二个Rectangle项的颜色更改为红色 我该怎么做?

这是我的ListView:

ListView {  

        id: myList  
        model: myDataModel  

        delegate: Rectangle { 

               color: "green"
               height: 20
               width: 100

               onClicked{
                   //Do something
               }

        }
    }

1 个答案:

答案 0 :(得分:5)

我找到了它!

  

var myListItemObject = ListView.contentItem.children [1]
    myListItemObject .color =“red”