aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/qml/Button.qml
blob: aacce0c37a73086e290490909e2c96774541177f (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [document]
import QtQuick

//! [parent begin]
Rectangle {
//! [parent begin]

//! [property alias]
property alias buttonLabel: label.text
Text {
    id: label
    text: "empty label"
}
    //! [property alias]

//! [id alias]
    property alias buttonImage: image

    Image {id: image}
//! [id alias]
//! [parent end]
}
//! [parent end]

//! [document]