mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 08:31:33 +08:00
27 lines
497 B
QML
27 lines
497 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Window 2.15
|
|
import QtQuick.Controls 2.15
|
|
import FluentUI 1.0
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"Slider"
|
|
leftPadding:10
|
|
rightPadding:10
|
|
bottomPadding:20
|
|
|
|
FluSlider{
|
|
Layout.topMargin: 20
|
|
value: 50
|
|
Layout.leftMargin: 10
|
|
}
|
|
FluSlider{
|
|
orientation:FluSlider.Vertical
|
|
Layout.topMargin: 20
|
|
Layout.leftMargin: 10
|
|
Layout.bottomMargin: 20
|
|
value: 50
|
|
}
|
|
}
|