10 lines
129 B
QML
10 lines
129 B
QML
import QtQuick
|
|
import QtQuick.Window
|
|
|
|
Window {
|
|
width: 640
|
|
height: 480
|
|
visible: true
|
|
title: qsTr("Hello World")
|
|
}
|