Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
36 lines
710 B
QML
36 lines
710 B
QML
import QtQuick 1.0
|
|
|
|
Rectangle {
|
|
color: "white"
|
|
width: 120
|
|
height: 240
|
|
id: page
|
|
Component {
|
|
id: delegate
|
|
Rectangle {
|
|
color: "thistle"
|
|
width: 100
|
|
height: 100
|
|
Rectangle {
|
|
anchors.centerIn: parent
|
|
width: 60
|
|
height: 60
|
|
color: name
|
|
}
|
|
}
|
|
}
|
|
Column{
|
|
Repeater{
|
|
delegate: delegate
|
|
model: ListModel {
|
|
ListElement {
|
|
name: "palegoldenrod"
|
|
}
|
|
ListElement {
|
|
name: "lightsteelblue"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|