blob: de61de481327d728a39d09577eb22bdfad41b2d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import QtQuick 2.0
Rectangle {
height: this.width
border.color: "yellow"
border.width: 0
MouseArea {
anchors.fill: parent
onClicked: parent.border.width ^= 3
}
}
|