aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml23
1 files changed, 23 insertions, 0 deletions
diff --git a/main.qml b/main.qml
index 7d21507..1f74e35 100644
--- a/main.qml
+++ b/main.qml
@@ -7,4 +7,27 @@ Window {
width: 640
height: 480
title: qsTr("Hello World")
+
+
+ Image {
+ id: image
+ x: 412
+ y: 166
+ width: 165
+ height: 104
+ source: "images/das-netzwerkteam-de.png"
+ fillMode: Image.PreserveAspectFit
+ }
+
+
+ Text {
+ id: element
+ x: 104
+ y: 187
+ text: qsTr("Hallo Welt!")
+ renderType: Text.NativeRendering
+ font.family: "Verdana"
+ lineHeight: 1.4
+ font.pixelSize: 50
+ }
}