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