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

17 lines
308 B
QML

import QtQuick
Rectangle {
width: 400; height: 400
Rectangle {
width: 100; height: 100
color: mousetracker.containsMouse ? "lightsteelblue" : "beige"
MouseArea {
id: mousetracker
anchors.fill: parent
hoverEnabled: true
}
}
}