Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. Repeater {
  2. model: 6
  3. Rectangle {
  4. width: 152
  5. height: 87
  6. color: "red"
  7. state: "off"
  8.  
  9. states: [
  10. State {
  11. name: "off"
  12. PropertyChanges {target: ?????; color = red }
  13. },
  14. State {
  15. name: "on"
  16. PropertyChanges {target: ?????; color = green }
  17. }
  18. ]
  19.  
  20. MouseArea {
  21. anchors.fill: parent
  22. onReleased: parent.state === "on" ? parent.state = "off" : parent.state = "on"
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement