mirror of
https://github.com/jaredtao/TaoQuick.git
synced 2025-01-31 21:22:58 +08:00
20 lines
370 B
QML
20 lines
370 B
QML
import QtQuick 2.12
|
|
import QtQuick.Window 2.12
|
|
import QtQuick 2.9
|
|
import TaoQuick 1.0
|
|
Window {
|
|
width: 640
|
|
height: 480
|
|
visible: true
|
|
title: qsTr("Hello World")
|
|
CusButton_Blue {
|
|
width: 120
|
|
height: 36
|
|
anchors.centerIn: parent
|
|
text: "Hello"
|
|
onClicked: {
|
|
console.log("hello TaoQuick")
|
|
}
|
|
}
|
|
}
|