Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.22 KB | None | 0 0
  1. import QtQuick 2.0
  2.  
  3. Rectangle {
  4.     id: square
  5.     width: 200
  6.     height: 200
  7.     color: "red"
  8.  
  9.     MouseArea {
  10.         anchors.fill: parent
  11.         onClicked: {
  12.             square.color = "blue"
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement