12
QML: как обращаться с мышью над событием на MouseArea? Может ли кто-нибудь представить простой пример или сказать, что не так с моим?QML: как обращаться с мышью?
import QtQuick 1.1
Image {
source: "quit.png"
scale: mouseArea.containsMouse ? 0.8 : 1.0
smooth: quitMouse.containsMouse
MouseArea {
id: quitMouse
anchors.fill: parent
anchors.margins: -10
onClicked: Qt.quit()
}
}