lena_pi/LenaPi/main.qml
2019-04-04 13:44:28 +02:00

24 lines
370 B
QML

import QtQuick 2.7
import QtQuick.Window 2.2
import QtQuick.Controls 1.4
Window {
visible: true
width: 800
height: 480
title: "LenaPi 1.1 - beta"
Image{
id: background
anchors.fill: parent
z: -1
source: "qrc:/background"
}
Loader{
anchors.fill: parent
source: uiStateModel.pSource
}
}