mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 16:41:30 +08:00
60 lines
1.1 KiB
QML
60 lines
1.1 KiB
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import QtQuick.Controls
|
|
import FluentUI
|
|
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
|
|
}'
|
|
}
|
|
}
|