FluentUI/example/SettingPage.qml

29 lines
405 B
QML
Raw Normal View History

2023-02-26 23:47:07 +08:00
import QtQuick 2.15
import FluentUI 1.0
2023-02-27 18:46:39 +08:00
FluWindow {
2023-02-26 23:47:07 +08:00
width: 500
height: 500
2023-02-27 23:04:52 +08:00
title:"设置"
2023-02-26 23:47:07 +08:00
2023-02-27 18:46:39 +08:00
FluAppBar{
id:appbar
}
2023-02-26 23:47:07 +08:00
FluText{
2023-02-28 18:29:00 +08:00
text:"设置"
2023-02-26 23:47:07 +08:00
fontStyle: FluText.Display
anchors.centerIn: parent
2023-02-28 18:29:00 +08:00
MouseArea{
anchors.fill: parent
onClicked: {
FluApp.navigate("/About")
}
}
2023-02-26 23:47:07 +08:00
}
}