Kylin/Examples/FluentWindow/qml/Main.qml

19 lines
301 B
QML
Raw Normal View History

2024-08-20 23:58:02 +08:00
import QtQuick
import Fluent as Fluent
2024-08-21 23:26:43 +08:00
Fluent.Window {
2024-08-20 23:58:02 +08:00
width: 640
height: 480
visible: true
title: qsTr("FluentWindow")
Fluent.Rectangle {
2024-08-21 23:26:43 +08:00
x:100
y:100
2024-08-20 23:58:02 +08:00
width: 100
height: 100
2024-08-21 23:26:43 +08:00
color:"red"
radius:[10,0,10,0]
2024-08-20 23:58:02 +08:00
}
}