Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
42 lines
804 B
QML
42 lines
804 B
QML
import QtQuick 1.0
|
|
|
|
Item {
|
|
width: 640
|
|
height: 480
|
|
Grid {
|
|
objectName: "grid"
|
|
columns: 3
|
|
spacing: 4
|
|
Rectangle {
|
|
objectName: "one"
|
|
color: "red"
|
|
width: 50
|
|
height: 50
|
|
}
|
|
Rectangle {
|
|
objectName: "two"
|
|
color: "green"
|
|
width: 20
|
|
height: 50
|
|
}
|
|
Rectangle {
|
|
objectName: "three"
|
|
color: "blue"
|
|
width: 50
|
|
height: 20
|
|
}
|
|
Rectangle {
|
|
objectName: "four"
|
|
color: "cyan"
|
|
width: 50
|
|
height: 50
|
|
}
|
|
Rectangle {
|
|
objectName: "five"
|
|
color: "magenta"
|
|
width: 10
|
|
height: 10
|
|
}
|
|
}
|
|
}
|