mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 16:41:30 +08:00
87 lines
2.2 KiB
QML
87 lines
2.2 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import QtQuick.Window
|
|
import FluentUI
|
|
import "../component"
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"StatusLayout"
|
|
|
|
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"
|
|
FluMenuItem{
|
|
text:"Loading"
|
|
onClicked: {
|
|
btn_status_mode.text = text
|
|
status_view.statusMode = FluStatusLayoutType.Loading
|
|
}
|
|
}
|
|
FluMenuItem{
|
|
text:"Empty"
|
|
onClicked: {
|
|
btn_status_mode.text = text
|
|
status_view.statusMode = FluStatusLayoutType.Empty
|
|
}
|
|
}
|
|
FluMenuItem{
|
|
text:"Error"
|
|
onClicked: {
|
|
btn_status_mode.text = text
|
|
status_view.statusMode = FluStatusLayoutType.Error
|
|
}
|
|
}
|
|
FluMenuItem{
|
|
text:"Success"
|
|
onClicked: {
|
|
btn_status_mode.text = text
|
|
status_view.statusMode = FluStatusLayoutType.Success
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 10
|
|
height: 380
|
|
paddings: 10
|
|
FluStatusLayout{
|
|
id:status_view
|
|
anchors.fill: parent
|
|
onErrorClicked:{
|
|
showError("点击重新加载")
|
|
}
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
color:FluTheme.primaryColor
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluStatusLayout{
|
|
anchors.fill: parent
|
|
statusMode: FluStatusLayoutType.Loading
|
|
Rectangle{
|
|
anchors.fill: parent
|
|
color:FluTheme.primaryColor
|
|
}
|
|
}'
|
|
}
|
|
|
|
}
|