mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-16 04:42:53 +08:00
12 lines
150 B
QML
12 lines
150 B
QML
// main.qml
|
|
|
|
import QtQuick 2.9
|
|
import QtQuick.Window 2.2
|
|
|
|
Window {
|
|
visible: true
|
|
width: 640
|
|
height: 480
|
|
title: qsTr("Hello World")
|
|
}
|