summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/qml-intro/anchors1.qml
blob: 320d0e765d46aad934c4aa00c81326a75ec634e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.7

Rectangle {
    id: myWin
    width: 500
    height: 400

    Image {
        id: image1
        source: "images/qt-logo.png"
        width: 150; height: 150
        anchors.bottom: myWin.bottom
    }
}