kimitake

main.qml

Aug 11th, 2011
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import QtQuick 1.0
  2.  
  3. Rectangle {
  4. width: 360
  5. height: 360
  6. Text {
  7. text: "Hello World"
  8. anchors.centerIn: parent
  9. }
  10.  
  11. NextPage { id:nextPage }
  12.  
  13. MouseArea {
  14. anchors.fill: parent
  15. onClicked: {
  16. // Qt.quit();
  17. nextPage.func(10, "hello");
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment