79 lines
1.2 KiB
QML
79 lines
1.2 KiB
QML
// Copyright (c) Daniel Gakwaya.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import QtQuick
|
|
|
|
Window {
|
|
visible: true
|
|
width: 640
|
|
height: 480
|
|
title: qsTr("QML Basic Elements Demo")
|
|
|
|
Item {
|
|
id: containerItemId
|
|
x: 150; y: 50
|
|
width: 600
|
|
height: 300
|
|
|
|
Image {
|
|
x: 10
|
|
y: 50
|
|
width: 100
|
|
height: 100
|
|
//Loading image from the working directory
|
|
source: "file:LearnQt.png"
|
|
}
|
|
|
|
Image {
|
|
x: 150
|
|
y: 50
|
|
width: 100
|
|
height: 100
|
|
//Loading image from the resource file
|
|
source: "qrc:/images/LearnQt.png"
|
|
}
|
|
|
|
//Load image from a full path
|
|
Image {
|
|
x: 300
|
|
y: 50
|
|
width: 100
|
|
height: 100
|
|
//Specify the full path to the image
|
|
source: "file:///D:/Artwork/LearnQt.png"
|
|
}
|
|
|
|
Image {
|
|
x: 450
|
|
y: 50
|
|
width: 100
|
|
height: 100
|
|
//Specify the full web path to the image
|
|
source: "https://www.learnqt.guide/images/qt_gui_intermediate.png"
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|