2023-05-22 16:17:51 +08:00
|
|
|
import QtQuick
|
2023-03-30 21:52:55 +08:00
|
|
|
import QtQuick.Layouts
|
|
|
|
import QtQuick.Window
|
|
|
|
import QtQuick.Controls
|
|
|
|
import FluentUI
|
2023-06-12 16:46:02 +08:00
|
|
|
import "qrc:///example/qml/component"
|
2023-02-28 23:57:55 +08:00
|
|
|
|
2023-03-10 18:08:32 +08:00
|
|
|
FluScrollablePage{
|
2023-03-28 17:53:46 +08:00
|
|
|
|
2023-03-10 18:08:32 +08:00
|
|
|
title:"Progress"
|
|
|
|
|
2023-04-06 17:32:21 +08:00
|
|
|
FluArea{
|
|
|
|
Layout.fillWidth: true
|
2023-03-10 18:08:32 +08:00
|
|
|
Layout.topMargin: 20
|
2023-07-03 11:50:26 +08:00
|
|
|
height: 110
|
2023-04-06 17:32:21 +08:00
|
|
|
paddings: 10
|
2023-07-03 11:50:26 +08:00
|
|
|
|
2023-04-06 17:32:21 +08:00
|
|
|
ColumnLayout{
|
2023-07-03 11:50:26 +08:00
|
|
|
spacing: 10
|
2023-04-06 17:32:21 +08:00
|
|
|
anchors{
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
left: parent.left
|
|
|
|
}
|
2023-07-03 11:50:26 +08:00
|
|
|
FluText{
|
|
|
|
text: "indeterminate = true"
|
|
|
|
}
|
2023-04-06 17:32:21 +08:00
|
|
|
FluProgressBar{
|
|
|
|
}
|
|
|
|
FluProgressRing{
|
|
|
|
}
|
2023-07-03 11:50:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
CodeExpander{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.topMargin: -1
|
|
|
|
code:'FluProgressBar{
|
|
|
|
|
|
|
|
}
|
|
|
|
FluProgressRing{
|
|
|
|
|
|
|
|
}
|
|
|
|
'
|
|
|
|
}
|
|
|
|
|
|
|
|
FluArea{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.topMargin: 20
|
|
|
|
height: 230
|
|
|
|
paddings: 10
|
|
|
|
|
|
|
|
ColumnLayout{
|
|
|
|
spacing: 10
|
|
|
|
anchors{
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
left: parent.left
|
|
|
|
}
|
|
|
|
FluText{
|
|
|
|
text: "indeterminate = false"
|
|
|
|
}
|
2023-04-06 17:32:21 +08:00
|
|
|
FluProgressBar{
|
|
|
|
indeterminate: false
|
2023-07-03 11:50:26 +08:00
|
|
|
progress: slider.value/100
|
2023-04-06 17:32:21 +08:00
|
|
|
}
|
|
|
|
FluProgressRing{
|
|
|
|
indeterminate: false
|
2023-07-03 11:50:26 +08:00
|
|
|
progress: slider.value/100
|
|
|
|
}
|
|
|
|
FluProgressBar{
|
|
|
|
indeterminate: false
|
|
|
|
progressVisible: true
|
|
|
|
progress: slider.value/100
|
|
|
|
}
|
|
|
|
FluProgressRing{
|
|
|
|
indeterminate: false
|
|
|
|
progressVisible: true
|
|
|
|
progress: slider.value/100
|
2023-04-06 17:32:21 +08:00
|
|
|
}
|
|
|
|
FluSlider{
|
2023-07-03 11:50:26 +08:00
|
|
|
id:slider
|
2023-06-19 17:50:54 +08:00
|
|
|
Component.onCompleted: {
|
|
|
|
value = 50
|
|
|
|
}
|
2023-04-06 17:32:21 +08:00
|
|
|
}
|
2023-02-28 23:57:55 +08:00
|
|
|
}
|
|
|
|
}
|
2023-04-06 17:32:21 +08:00
|
|
|
CodeExpander{
|
|
|
|
Layout.fillWidth: true
|
2023-04-19 17:25:46 +08:00
|
|
|
Layout.topMargin: -1
|
2023-04-06 17:32:21 +08:00
|
|
|
code:'FluProgressBar{
|
|
|
|
indeterminate: false
|
|
|
|
}
|
|
|
|
FluProgressRing{
|
|
|
|
indeterminate: false
|
2023-07-03 11:50:26 +08:00
|
|
|
progressVisible: true
|
|
|
|
}
|
|
|
|
'
|
2023-04-06 17:32:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-02-28 23:57:55 +08:00
|
|
|
}
|