telephant/qml/TextButton.qml
2020-02-27 06:54:51 +01:00

16 lines
298 B
QML

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