mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 08:31:33 +08:00
23 lines
381 B
QML
23 lines
381 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import QtQuick.Controls
|
|
import FluentUI
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"Slider"
|
|
|
|
FluSlider{
|
|
Layout.topMargin: 20
|
|
Layout.leftMargin: 15
|
|
value: 50
|
|
}
|
|
FluSlider{
|
|
orientation:FluSlider.Vertical
|
|
Layout.topMargin: 20
|
|
Layout.leftMargin: 15
|
|
value: 50
|
|
}
|
|
}
|