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") } } }