29 lines
364 B
QML
29 lines
364 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: {
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|