telephant/qml/TextButton.qml
2021-01-30 19:45:41 +01:00

16 lines
300 B
QML

import QtQuick 2.12
import QtQuick.Controls 2.12
Label {
id: label
property var onClicked: function () {}
MouseArea {
id: mouseArea
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onClicked: parent.onClicked()
}
}