FluentUI/example/T_Progress.qml

52 lines
1.2 KiB
QML
Raw Normal View History

2023-02-28 23:57:55 +08:00
import QtQuick 2.15
import QtQuick.Layouts 1.15
import QtQuick.Window 2.15
2023-03-06 18:08:01 +08:00
import QtQuick.Controls 2.15
2023-02-28 23:57:55 +08:00
import QtGraphicalEffects 1.15
import FluentUI 1.0
Item {
2023-03-06 18:08:01 +08:00
FluText{
id:title
text:"Progress"
fontStyle: FluText.TitleLarge
}
ScrollView{
clip: true
width: parent.width
contentWidth: parent.width
anchors{
top: title.bottom
bottom: parent.bottom
2023-02-28 23:57:55 +08:00
}
2023-03-06 18:08:01 +08:00
ColumnLayout{
spacing: 5
FluProgressBar{
Layout.topMargin: 20
}
FluProgressRing{
Layout.topMargin: 10
}
FluProgressBar{
id:progress_bar
Layout.topMargin: 20
indeterminate: false
}
FluProgressRing{
id:progress_ring
Layout.topMargin: 10
indeterminate: false
}
FluSlider{
Layout.topMargin: 30
value:50
onValueChanged:{
progress_bar.progress = value/100
progress_ring.progress = value/100
}
2023-03-07 00:05:27 +08:00
Layout.bottomMargin: 30
2023-02-28 23:57:55 +08:00
}
}
}
}