Kylin/Examples/FluentWindow/qml/Main.qml

15 lines
215 B
QML
Raw Normal View History

2024-08-20 23:58:02 +08:00
import QtQuick
import Fluent as Fluent
Window {
width: 640
height: 480
visible: true
title: qsTr("FluentWindow")
Fluent.Rectangle {
width: 100
height: 100
}
}