overte-HifiExperiments/interface/resources/qml/TestRoot.qml
2015-04-15 12:35:30 -07:00

26 lines
457 B
QML

import QtQuick 2.3
import "componentCreation.js" as Creator
Item {
id: root
width: 1280
height: 720
function loadChild(url) {
Creator.createObject(root, url)
}
CustomButton {
anchors.right: parent.right
anchors.rightMargin: 24
anchors.bottom: parent.bottom
anchors.bottomMargin: 24
text: "Test"
onClicked: {
loadChild("TestDialog.qml");
}
}
}