lena_pi/LenaPi/main.qml
2018-10-20 18:06:19 +02:00

25 lines
395 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.0"
Image{
id: background
anchors.fill: parent
z: -1
source: "qrc:/background"
}
Loader{
anchors.fill: parent
//source: "MusicPlayer.qml"
source: "Navigation.qml"
}
}