KSOE/Day1-IntroductionGUIFrameworks/HelloWorlds/qml_helloworld/qml_hello/main.qml

19 lines
267 B
QML
Raw Normal View History

2022-10-09 15:48:33 +02:00
import QtQuick 2.15
import QtQuick.Window 2.15
Window {
width: 640
height: 480
visible: true
title: qsTr("Hello World")
2022-10-10 10:43:56 +02:00
Item {
anchors.fill: parent
Text {
id: text
text: "Hello, World!"
2022-10-09 15:48:33 +02:00
}
}
}