moment/harmonyqml/Window.qml

16 lines
249 B
QML
Raw Normal View History

2019-03-22 14:28:14 +11:00
import QtQuick 2.7
import QtQuick.Controls 2.2
ApplicationWindow {
visible: true
width: 640
height: 700
title: "Harmony QML"
Loader {
anchors.fill: parent
source: "UI.qml"
objectName: "UILoader"
}
}