40 lines
629 B
QML
40 lines
629 B
QML
import QtQuick 2.11
|
|
|
|
Rectangle {
|
|
objectName: "rootItem"
|
|
color: "white"
|
|
width: 800
|
|
height: 600
|
|
|
|
TestComponent {
|
|
objectName: "testComponent"
|
|
|
|
}
|
|
|
|
Rectangle {
|
|
objectName: "rectangleItem"
|
|
containmentMask: Item {
|
|
|
|
}
|
|
}
|
|
|
|
Item {
|
|
id: item
|
|
objectName: "simpleItem"
|
|
property string testProperty: dynamicProperty
|
|
}
|
|
|
|
states: [
|
|
State {
|
|
name: "state01"
|
|
PropertyChanges {
|
|
target: item
|
|
width: 10
|
|
}
|
|
},
|
|
State {
|
|
name: "state02"
|
|
}
|
|
]
|
|
}
|