mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-08 03:18:19 +02:00
26 lines
457 B
QML
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");
|
|
}
|
|
}
|
|
}
|
|
|