aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickdesignersupport/data/bindingTest.qml
blob: 8d3e7dfa37a25454c17d03e0dc1174f25029d88d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.9
import QtQuick.Window 2.3

Rectangle {
    id: rect
    width: 640
    height: 480
    color: "red"
    objectName: "root"

    Text {
        objectName: "text"
        text: qsTr("Some Text") + rect.width
        font.bold: true
        font.italic: false
    }
    Item {
        objectName: "item"
    }
}