FluentUI/example/qml/TestWindow.qml

15 lines
154 B
QML
Raw Normal View History

2023-05-11 18:24:58 +08:00
import QtQuick
import FluentUI
2023-05-12 19:26:49 +08:00
FluWindow {
2023-05-11 18:24:58 +08:00
id:window
width: 400
height: 400
visible: true
FluButton{
text:"123"
}
}