FluentUI/example/qml-Qt6/page/T_Slider.qml

60 lines
1.1 KiB
QML
Raw Normal View History

2023-08-24 15:50:37 +08:00
import QtQuick
import QtQuick.Layouts
import QtQuick.Window
import QtQuick.Controls
import FluentUI
2024-01-25 17:26:50 +08:00
import "../component"
2023-08-24 15:50:37 +08:00
FluScrollablePage{
title:"Slider"
FluArea{
Layout.fillWidth: true
2023-08-27 12:40:02 +08:00
Layout.preferredHeight: 200
2023-08-24 15:50:37 +08:00
Layout.topMargin: 20
2023-08-27 12:40:02 +08:00
paddings: 10
Row{
spacing: 30
FluSlider{
}
FluSlider{
orientation: Qt.Vertical
anchors.verticalCenter: parent.verticalCenter
}
2023-08-24 15:50:37 +08:00
}
}
CodeExpander{
Layout.fillWidth: true
Layout.topMargin: -1
code:'FluSlider{
value:50
}'
}
2023-08-27 12:40:02 +08:00
2023-08-24 15:50:37 +08:00
FluArea{
Layout.fillWidth: true
2023-08-27 12:40:02 +08:00
Layout.preferredHeight: 200
2023-08-24 15:50:37 +08:00
Layout.topMargin: 20
2023-08-27 12:40:02 +08:00
paddings: 10
Row{
spacing: 30
FluRangeSlider{
}
FluRangeSlider{
orientation: Qt.Vertical
anchors.verticalCenter: parent.verticalCenter
}
2023-08-24 15:50:37 +08:00
}
}
CodeExpander{
Layout.fillWidth: true
Layout.topMargin: -1
2023-08-27 12:40:02 +08:00
code:'FluRangeSlider{
2023-08-24 15:50:37 +08:00
orientation: Qt.Vertical
}'
}
}