mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 16:41:30 +08:00
67 lines
1.7 KiB
QML
67 lines
1.7 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import QtQuick.Controls
|
|
import FluentUI
|
|
import "qrc:///example/qml/component"
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"InfoBar"
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 20
|
|
height: 240
|
|
paddings: 10
|
|
ColumnLayout{
|
|
spacing: 14
|
|
anchors{
|
|
verticalCenter: parent.verticalCenter
|
|
left: parent.left
|
|
}
|
|
FluButton{
|
|
text:"Info"
|
|
onClicked: {
|
|
showInfo("这是一个Info样式的InfoBar")
|
|
}
|
|
}
|
|
FluButton{
|
|
text:"Warning"
|
|
onClicked: {
|
|
showWarning("这是一个Warning样式的InfoBar")
|
|
}
|
|
}
|
|
FluButton{
|
|
text:"Error"
|
|
onClicked: {
|
|
showError("这是一个Error样式的InfoBar")
|
|
}
|
|
}
|
|
FluButton{
|
|
text:"Success"
|
|
onClicked: {
|
|
showSuccess("这是一个Success样式的InfoBar这是一个Success样式的InfoBar")
|
|
}
|
|
}
|
|
FluButton{
|
|
text:"Loading"
|
|
onClicked: {
|
|
showLoading()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'showInfo("这是一个Info样式的InfoBar")
|
|
|
|
showWarning("这是一个Warning样式的InfoBar")
|
|
|
|
showError("这是一个Error样式的InfoBar")
|
|
|
|
showSuccess("这是一个Success样式的InfoBar这是一个Success样式的InfoBar")'
|
|
}
|
|
}
|