mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 08:31:33 +08:00
104 lines
2.1 KiB
QML
104 lines
2.1 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import QtQuick.Controls
|
|
import FluentUI
|
|
import "../component"
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"Progress"
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 20
|
|
height: 130
|
|
paddings: 10
|
|
|
|
ColumnLayout{
|
|
spacing: 10
|
|
anchors{
|
|
verticalCenter: parent.verticalCenter
|
|
left: parent.left
|
|
}
|
|
FluText{
|
|
text: "indeterminate = true"
|
|
}
|
|
FluProgressBar{
|
|
}
|
|
FluProgressRing{
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluProgressBar{
|
|
|
|
}
|
|
FluProgressRing{
|
|
|
|
}
|
|
'
|
|
}
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 20
|
|
height: 286
|
|
paddings: 10
|
|
|
|
ColumnLayout{
|
|
spacing: 10
|
|
anchors{
|
|
verticalCenter: parent.verticalCenter
|
|
left: parent.left
|
|
}
|
|
FluText{
|
|
text: "indeterminate = false"
|
|
}
|
|
FluProgressBar{
|
|
indeterminate: false
|
|
value:slider.value/100
|
|
Layout.topMargin: 10
|
|
}
|
|
FluProgressBar{
|
|
indeterminate: false
|
|
value:slider.value/100
|
|
progressVisible: true
|
|
Layout.topMargin: 10
|
|
}
|
|
FluProgressRing{
|
|
indeterminate: false
|
|
value: slider.value/100
|
|
Layout.topMargin: 10
|
|
}
|
|
FluProgressRing{
|
|
progressVisible: true
|
|
indeterminate: false
|
|
value: slider.value/100
|
|
}
|
|
FluSlider{
|
|
id:slider
|
|
Component.onCompleted: {
|
|
value = 50
|
|
}
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluProgressBar{
|
|
indeterminate: false
|
|
}
|
|
FluProgressRing{
|
|
indeterminate: false
|
|
progressVisible: true
|
|
}
|
|
'
|
|
}
|
|
|
|
|
|
}
|