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