Kylin/Examples/FluentWindow/qml/Main.qml
2024-08-21 23:26:43 +08:00

19 lines
301 B
QML

import QtQuick
import Fluent as Fluent
Fluent.Window {
width: 640
height: 480
visible: true
title: qsTr("FluentWindow")
Fluent.Rectangle {
x:100
y:100
width: 100
height: 100
color:"red"
radius:[10,0,10,0]
}
}