qt6-bb10/qtdeclarative/tests/auto/quick/touchmouse/data/oneMouseArea.qml

15 lines
292 B
QML

import QtQuick 2.0
Item {
width: 320; height: 240
Rectangle {
width: parent.width / 2; height: parent.height; x: width
color: ma.containsPress ? "steelblue" : "lightsteelblue"
MouseArea {
id: ma
anchors.fill: parent
}
}
}