aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/controls/data/tooltip/tooltip.qml
blob: e9cc7ba00d7177ca64f4ac7e6af9f1656ac5a301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts

ColumnLayout {
    width: 200
    height: 100

    Button {
        id: button
        text: qsTr("Tooltip")
        ToolTip {
            parent: button
            visible: true
            text: qsTr("Click the button")
        }
    }
}