Advertisement
Guest User

Test

a guest
Oct 10th, 2011
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import QtQuick 1.1
  2. import com.nokia.meego 1.0
  3.  
  4. PageStackWindow {
  5. showStatusBar: false
  6. initialPage: MainPage { }
  7.  
  8.  
  9. Rectangle {
  10.  
  11. width: 856
  12. height: 480
  13. Text {
  14. text: qsTr("Hello World")
  15. anchors.centerIn: parent
  16. }
  17. MouseArea {
  18. anchors.fill: parent
  19. onClicked: {
  20. Qt.quit();
  21. }
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement