27 lines
455 B
QML
27 lines
455 B
QML
import QtQuick 2.7
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Controls 2.4
|
|
|
|
Window {
|
|
visible: true
|
|
// width: 800
|
|
//height: 480
|
|
title: "LenaPi 1.2"
|
|
|
|
Component.onCompleted: showMaximized();
|
|
|
|
Image{
|
|
id: background
|
|
|
|
anchors.fill: parent
|
|
z: -1
|
|
//source: "qrc:/resources/pig.png"
|
|
source: "qrc:/background"
|
|
}
|
|
|
|
Loader{
|
|
anchors.fill: parent
|
|
source: uiStateModel.pSource
|
|
}
|
|
|
|
}
|