Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import QtQuick 1.1
- Rectangle {
- width: 360
- height: 360
- Text {
- x: 100
- y: 110
- width: 122
- height: 61
- anchors.centerIn: parent
- text: "Holi ewe"
- anchors.verticalCenterOffset: -39
- anchors.horizontalCenterOffset: -19
- }
- MouseArea {
- smooth: true
- visible: true
- opacity: 0
- anchors.fill: parent
- onClicked: {
- Qt.quit();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment