import QtQuick 2.0 Rectangle { width: 360 height: 360 color: "#00ff0000" border.color: "blue" Rectangle { anchors.centerIn: parent width: 100 height: 100 Text { text: qsTr("Hello World") anchors.centerIn: parent } MouseArea { anchors.fill: parent onClicked: { Qt.quit(); } } } }