FluentUI/example/qml/page/T_StatusView.qml

88 lines
2.3 KiB
QML
Raw Normal View History

2023-08-24 15:50:37 +08:00
import QtQuick 2.15
import QtQuick.Layouts 1.15
import QtQuick.Controls 2.15
import QtQuick.Window 2.15
import FluentUI 1.0
2023-06-12 16:46:02 +08:00
import "qrc:///example/qml/component"
2023-08-26 17:20:30 +08:00
import "../component"
2023-04-09 19:29:50 +08:00
FluScrollablePage{
title:"StatusView"
FluArea{
id:layout_actions
Layout.fillWidth: true
Layout.topMargin: 20
height: 50
paddings: 10
RowLayout{
spacing: 14
FluDropDownButton{
id:btn_status_mode
Layout.preferredWidth: 140
text:"Loading"
2023-06-18 13:56:30 +08:00
FluMenuItem{
text:"Loading"
onClicked: {
btn_status_mode.text = text
2023-07-18 18:24:06 +08:00
status_view.statusMode = FluStatusViewType.Loading
2023-04-09 19:29:50 +08:00
}
2023-06-18 13:56:30 +08:00
}
FluMenuItem{
text:"Empty"
onClicked: {
btn_status_mode.text = text
2023-07-18 18:24:06 +08:00
status_view.statusMode = FluStatusViewType.Empty
2023-06-18 13:56:30 +08:00
}
}
FluMenuItem{
text:"Error"
onClicked: {
btn_status_mode.text = text
2023-07-18 18:24:06 +08:00
status_view.statusMode = FluStatusViewType.Error
2023-06-18 13:56:30 +08:00
}
}
FluMenuItem{
text:"Success"
onClicked: {
btn_status_mode.text = text
2023-07-18 18:24:06 +08:00
status_view.statusMode = FluStatusViewType.Success
2023-06-18 13:56:30 +08:00
}
}
2023-04-09 19:29:50 +08:00
}
}
}
FluArea{
Layout.fillWidth: true
Layout.topMargin: 10
height: 380
paddings: 10
FluStatusView{
id:status_view
anchors.fill: parent
onErrorClicked:{
showError("点击重新加载")
}
Rectangle {
anchors.fill: parent
color:FluTheme.primaryColor.dark
}
}
}
CodeExpander{
Layout.fillWidth: true
2023-04-19 17:25:46 +08:00
Layout.topMargin: -1
2023-04-09 19:29:50 +08:00
code:'FluStatusView{
anchors.fill: parent
2023-07-18 18:24:06 +08:00
statusMode: FluStatusViewType.Loading
2023-04-09 19:29:50 +08:00
Rectangle{
anchors.fill: parent
color:FluTheme.primaryColor.dark
}
}'
}
}