Just set MouseArea anchor.fill property to solve your problem.
Rectangle {
id: section1
color: "#293645"
radius: 10
anchors.fill: parent
anchors.rightMargin: 20
anchors.leftMargin: 20
anchors.bottomMargin: 25
anchors.topMargin: 25
MouseArea {
anchors.fill: parent
hoverEnabled: true
onEntered: {
section1.color = "red"
}
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…