mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 08:31:33 +08:00
61 lines
1.2 KiB
QML
61 lines
1.2 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Window 2.15
|
|
import QtQuick.Controls 2.15
|
|
import FluentUI 1.0
|
|
import "../component"
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"Slider"
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 200
|
|
Layout.topMargin: 20
|
|
paddings: 10
|
|
|
|
Row{
|
|
spacing: 30
|
|
FluSlider{
|
|
}
|
|
FluSlider{
|
|
orientation: Qt.Vertical
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluSlider{
|
|
value:50
|
|
}'
|
|
}
|
|
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 200
|
|
Layout.topMargin: 20
|
|
paddings: 10
|
|
Row{
|
|
spacing: 30
|
|
FluRangeSlider{
|
|
}
|
|
FluRangeSlider{
|
|
orientation: Qt.Vertical
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluRangeSlider{
|
|
orientation: Qt.Vertical
|
|
}'
|
|
}
|
|
}
|
|
|