Advertisement
Guest User

hello

a guest
Sep 22nd, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. import QtQuick 1.1
  2.  
  3. Rectangle {
  4. id: canvas
  5. width: 300
  6. height: 200
  7. color: "#00dd44"
  8.  
  9. Image {
  10. id: logo
  11. source: "logos/qt.png"
  12. x: 130
  13. y: 40
  14. }
  15.  
  16. Text {
  17. id: message
  18. color: "white"
  19. text: "Hola Mundo"
  20. font.pointSize: 20
  21. font.family: "Ubuntu"
  22. anchors.centerIn: parent
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement