Guest User

Untitled

a guest
Feb 28th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import QtQuick 2.5
  2.  
  3. Rectangle {
  4. property alias mouseArea: mouseArea
  5.  
  6. width: 360
  7. height: 360
  8.  
  9. MouseArea {
  10. id: mouseArea
  11. anchors.fill: parent
  12. }
  13.  
  14. Image {
  15. id: basicMap
  16. objectName: "basicMap"
  17. width: 10
  18. height: 286
  19. clip: false
  20. source: "images/basicmap.png"
  21. fillMode: Image.Tile
  22. asynchronous: true
  23. anchors.centerIn: parent
  24. }
  25. }
Add Comment
Please, Sign In to add comment