36 lines
892 B
QML
36 lines
892 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import FluentUI.Controls
|
|
import Gallery
|
|
|
|
ScrollablePage {
|
|
|
|
title: qsTr("About")
|
|
|
|
Frame{
|
|
Layout.preferredWidth: 260
|
|
Layout.preferredHeight: 200
|
|
ColumnLayout{
|
|
anchors.centerIn: parent
|
|
Image{
|
|
source: "qrc:/qt/qml/Gallery/res/image/logo.png"
|
|
Layout.preferredWidth: 64
|
|
Layout.preferredHeight: 64
|
|
Layout.alignment: Qt.AlignHCenter
|
|
}
|
|
Label{
|
|
text: qsTr("Current version V")+AppInfo.version + "AAAAA"
|
|
Layout.alignment: Qt.AlignHCenter
|
|
}
|
|
}
|
|
}
|
|
|
|
HotLoader{
|
|
Layout.preferredWidth: 600
|
|
Layout.preferredHeight: 400
|
|
source: "file:///D:/project/frontend/qt/Pro/FluentUI-Pro/Gallery/res/qml/page/T_Checkbox.qml"
|
|
}
|
|
|
|
}
|