aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmldesigner/data/fx/MyButton.qml
blob: 4104d2f0cb40a01ca5f4c0f24026d7c13a794100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

import QtQuick 1.0

Rectangle {
    property string text: "test"
    property real myNumber: 10
    default property alias content: text.children
    width: 200
    height: 200
    Text {
        id: text
        anchors.fill: parent
    }

}