2023-04-26 12:37:43 +02:00
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Controls
|
|
|
|
|
import QtQuick.Layouts
|
|
|
|
|
|
2023-04-27 08:24:43 +02:00
|
|
|
ApplicationWindow
|
|
|
|
|
{
|
2023-04-26 12:37:43 +02:00
|
|
|
width: 640
|
|
|
|
|
height: 480
|
|
|
|
|
visible: true
|
|
|
|
|
title: "Hello World"
|
|
|
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
|
|
text: "Hallo"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Button {
|
|
|
|
|
text: "Quit"
|
|
|
|
|
height: 20
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
|
|
|
|
|
onClicked: { Qt.quit() }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|