2
我正在尋找一種方法來訪問在QML中的模型中找到的元素的數量。在QML中使用模型的大小
例如:
Item {
id: root
Row {
id: row
height: root.height
width: root.width
spacing: 5
Repeater {
id: rep
width: root.width
height: root.height
model: [5, 3, 3, 1, 12]
delegate: myDelegate
Text {
id: myDelegate
text: "Element " + index + " of " size + ":" + modelData
}
}
}
但我無法弄清楚如何檢索模型的大小。 在文檔中我可以找到一個名爲count
的屬性,但沒有提示如何訪問它。
謝謝! rep.count像一個魅力。我會立即嘗試另一個! – derM