代码拉取完成,页面将自动刷新
import QtQuick 2.6
import QtQuick.Window 2.3
import QtQuick.Controls 2.2
ApplicationWindow {
id: window
visible: true
width: 800
height: 600
title: "MainWindow"
flags: Qt.Window | Qt.FramelessWindowHint
x: (Screen.width - width) / 2
y: (Screen.height - height) / 2
background: Image {
id: backgroundImage
source: "qrc:/background.jpg"
}
Button {
id: buttonQuit
anchors {
top: parent.top
right: parent.right
margins: 0
}
text: "X"
font.pixelSize: 30
width: 50
height: 50
onClicked: Qt.quit()
}
Text {
text: qsTr("Hello,World")
anchors.centerIn: parent
font.pointSize: 30
color: "white"
}
MouseArea {
id: mouseArea
width: parent.width - buttonQuit.width
height: parent.height - buttonQuit.height
}
ClickWave {
id: wave
width: 30
height: 30
waveColor: "white"
}
Connections {
target: mouseArea
function onClicked(mouse) {
wave.clicked(mouse.x, mouse.y)
}
}
function showWindow() {
window.show()
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。