FluentUI/example/AboutPage.qml

30 lines
387 B
QML
Raw Normal View History

2023-02-28 18:29:00 +08:00
import QtQuick 2.15
import FluentUI 1.0
FluWindow {
width: 500
2023-03-02 23:58:50 +08:00
height: 600
2023-02-28 18:29:00 +08:00
title:"关于"
FluAppBar{
id:appbar
2023-03-02 23:58:50 +08:00
title:"关于"
2023-02-28 18:29:00 +08:00
}
FluText{
text:"关于"
fontStyle: FluText.Display
anchors.centerIn: parent
MouseArea{
anchors.fill: parent
onClicked: {
}
}
}
}