aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2020-07-17 16:35:01 +0200
committerDaniel Teichmann <daniel.teichmann@das-netzwerkteam.de>2020-07-17 16:35:10 +0200
commit7b1fb0a0d1aed0572eb69a88b2d62ca3f6631056 (patch)
tree21bf7b59f2d7e0288b22db1458ae00f5f27d4f53
parent2997cb8cfb0d17758a38aff036d6ff506758a3de (diff)
downloadRWA.Support.DesktopApp-7b1fb0a0d1aed0572eb69a88b2d62ca3f6631056.tar.gz
RWA.Support.DesktopApp-7b1fb0a0d1aed0572eb69a88b2d62ca3f6631056.tar.bz2
RWA.Support.DesktopApp-7b1fb0a0d1aed0572eb69a88b2d62ca3f6631056.zip
Add some test content
-rw-r--r--images/das-netzwerkteam-de.pngbin0 -> 3564 bytes
-rw-r--r--main.qml23
2 files changed, 23 insertions, 0 deletions
diff --git a/images/das-netzwerkteam-de.png b/images/das-netzwerkteam-de.png
new file mode 100644
index 0000000..382a338
--- /dev/null
+++ b/images/das-netzwerkteam-de.png
Binary files differ
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
+ }
}