mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 19:20:59 +08:00
52 lines
998 B
QML
52 lines
998 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Window 2.15
|
|
import QtQuick.Controls 2.15
|
|
import "qrc:///example/qml/component"
|
|
import "../component"
|
|
import FluentUI 1.0
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"Slider"
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
height: 100
|
|
paddings: 10
|
|
Layout.topMargin: 20
|
|
FluSlider{
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluSlider{
|
|
value:50
|
|
}'
|
|
}
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
height: 200
|
|
paddings: 10
|
|
Layout.topMargin: 20
|
|
FluSlider{
|
|
orientation: Qt.Vertical
|
|
anchors.left: parent.left
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -1
|
|
code:'FluSlider{
|
|
orientation: Qt.Vertical
|
|
value:50
|
|
}'
|
|
}
|
|
|
|
|
|
}
|