aboutsummaryrefslogtreecommitdiff
path: root/main.qml
blob: 1f74e3549581cbfdf606831cc4e41091e0120624 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import QtQuick 2.9
import QtQuick.Window 2.2
import QtQuick.Extras 1.4

Window {
    visible: true
    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
    }
}