import QtQuick 2.2
import QtQuick.Controls 1.1
Rectangle
{
Image
{
anchors.fill: parent
id: background
source: "background.png"
}
width: 360
height: 360
Text
{
anchors.centerIn: parent
text: "你好世界,点击鼠标退出程序"
}
MouseArea
{
anchors.fill: parent
onClicked:
{
Qt.quit();
}
}
}