QML学习
main.qml
Button {
anchors.centerIn: parent
width: 100
height: 50
background: Rectangle {
color: "red"
MouseArea {
anchors.fill: parent
onPressed: {
parent.color = "black"
}
onReleased: {
parent.color = "red"
}
}
Behavior on color {
ColorAnimation {
duration: 500
}
}
}
contentItem: Re