Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
37 lines
728 B
QML
37 lines
728 B
QML
import QtQuick 1.0
|
|
|
|
Rectangle {
|
|
width: 240
|
|
height: 320
|
|
color: "white"
|
|
Component {
|
|
id: myDelegate
|
|
Item {
|
|
objectName: "myDelegate"
|
|
height: 20
|
|
width: 240
|
|
Text {
|
|
objectName: "myName"
|
|
text: name
|
|
}
|
|
Text {
|
|
objectName: "myNumber"
|
|
x: 100
|
|
text: number
|
|
}
|
|
}
|
|
}
|
|
Column {
|
|
id: container
|
|
objectName: "container"
|
|
Repeater {
|
|
id: repeater
|
|
objectName: "repeater"
|
|
width: 240
|
|
height: 320
|
|
delegate: myDelegate
|
|
model: testData
|
|
}
|
|
}
|
|
}
|