Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import QtQuick 1.0
- Rectangle {
- width: 360
- height: 360
- Text {
- text: "Hello World"
- anchors.centerIn: parent
- }
- NextPage { id:nextPage }
- MouseArea {
- anchors.fill: parent
- onClicked: {
- // Qt.quit();
- nextPage.func(10, "hello");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment