Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
15 lines
376 B
QML
15 lines
376 B
QML
import QtQuick 1.0
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property bool test1: root.children.length == 3
|
|
property bool test2: root.children[0] == item1
|
|
property bool test3: root.children[1] == item2
|
|
property bool test4: root.children[2] == item3
|
|
property bool test5: root.children[3] == null
|
|
|
|
children: [ Item { id: item1 }, Item { id: item2 }, Item { id: item3 } ]
|
|
}
|
|
|