qt6-bb10/qtdeclarative/tests/auto/quick/qquickmousearea/data/disableParentOnPress.qml

15 lines
270 B
QML

import QtQuick
Rectangle {
id: whiteRect
width: 200
height: 200
color: ma.pressed ? "lightsteelblue" : "white"
MouseArea {
id: ma
objectName: "mousearea"
anchors.fill: parent
onPressed: parent.enabled = false
}
}