mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 11:17:15 +08:00
29 lines
405 B
QML
29 lines
405 B
QML
import QtQuick 2.15
|
|
import FluentUI 1.0
|
|
|
|
FluWindow {
|
|
|
|
width: 500
|
|
height: 500
|
|
title:"设置"
|
|
|
|
FluAppBar{
|
|
id:appbar
|
|
}
|
|
|
|
FluText{
|
|
text:"设置"
|
|
fontStyle: FluText.Display
|
|
anchors.centerIn: parent
|
|
|
|
MouseArea{
|
|
anchors.fill: parent
|
|
onClicked: {
|
|
FluApp.navigate("/About")
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|