mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 00:27:32 +08:00
67 lines
1.2 KiB
QML
67 lines
1.2 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: 260
|
|
paddings: 10
|
|
ColumnLayout{
|
|
spacing: 20
|
|
anchors{
|
|
verticalCenter: parent.verticalCenter
|
|
left: parent.left
|
|
}
|
|
FluProgressBar{
|
|
}
|
|
FluProgressRing{
|
|
}
|
|
FluProgressBar{
|
|
id:progress_bar
|
|
indeterminate: false
|
|
}
|
|
FluProgressRing{
|
|
id:progress_ring
|
|
indeterminate: false
|
|
}
|
|
FluSlider{
|
|
value:50
|
|
onValueChanged:{
|
|
progress_bar.progress = value/100
|
|
progress_ring.progress = value/100
|
|
}
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluProgressBar{
|
|
|
|
}
|
|
|
|
FluProgressRing{
|
|
|
|
}
|
|
|
|
FluProgressBar{
|
|
indeterminate: false
|
|
}
|
|
|
|
FluProgressRing{
|
|
indeterminate: false
|
|
}'
|
|
}
|
|
|
|
|
|
|
|
}
|