Kylin/Examples/FluentWindow/qml/Main.qml
2024-08-20 23:58:02 +08:00

15 lines
215 B
QML

import QtQuick
import Fluent as Fluent
Window {
width: 640
height: 480
visible: true
title: qsTr("FluentWindow")
Fluent.Rectangle {
width: 100
height: 100
}
}