blob: 2ee60b0b50b7224930f95472a842c408dcad0e0f [file] [log] [blame]
import QtQuick 2.0
Item {
id: root
property InitialPropertyValuesComponent testInstance
testInstance: loader.item
property int bindable: 1
property int canaryValue: testInstance.canary
property int behaviorCount: testInstance.behaviorCount
Loader {
id: loader
objectName: "loader"
}
Component.onCompleted: {
loader.setSource("InitialPropertyValuesComponent.qml", {"canary": Qt.binding(function() { return root.bindable })});
}
}