Guest User

Untitled

a guest
Jul 18th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. import Qt 4.7
  2.  
  3. Rectangle {
  4. width: 360
  5. height: 640
  6.  
  7. color: "#000000"
  8.  
  9. Rectangle {
  10. height: 80
  11. anchors.left: parent.left; anchors.right: parent.right
  12. anchors.leftMargin: 30; anchors.rightMargin: 30
  13. anchors.bottom: parent.bottom
  14. anchors.bottomMargin: 30
  15. color: "#dd0000"
  16.  
  17. Text {
  18. anchors.centerIn: parent
  19. font.pixelSize: 30
  20. text: "Quit"
  21. color: "#e0e0e0"
  22. }
  23.  
  24. MouseArea {
  25. anchors.fill: parent
  26. onClicked: Qt.quit();
  27. }
  28. }
  29. }
Add Comment
Please, Sign In to add comment