Mrm2299

Untitled

Sep 26th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.47 KB | None | 0 0
  1. import QtQuick 1.1
  2.  
  3. Rectangle {
  4.     width: 360
  5.     height: 360
  6.     Text {
  7.         x: 100
  8.         y: 110
  9.         width: 122
  10.         height: 61
  11.         anchors.centerIn: parent
  12.         text: "Holi ewe"
  13.         anchors.verticalCenterOffset: -39
  14.         anchors.horizontalCenterOffset: -19
  15.     }
  16.     MouseArea {
  17.         smooth: true
  18.         visible: true
  19.         opacity: 0
  20.         anchors.fill: parent
  21.         onClicked: {
  22.             Qt.quit();
  23.         }
  24.     }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment