FluentUI/example/T_Slider.qml

23 lines
405 B
QML
Raw Normal View History

2023-03-01 11:58:30 +08:00
import QtQuick 2.15
import QtQuick.Layouts 1.15
import QtQuick.Window 2.15
2023-03-06 18:08:01 +08:00
import QtQuick.Controls 2.15
2023-03-01 11:58:30 +08:00
import FluentUI 1.0
2023-03-10 18:08:32 +08:00
FluScrollablePage{
title:"Slider"
FluSlider{
Layout.topMargin: 20
Layout.leftMargin: 15
value: 50
2023-03-06 18:08:01 +08:00
}
2023-03-10 18:08:32 +08:00
FluSlider{
orientation:FluSlider.Vertical
Layout.topMargin: 20
Layout.leftMargin: 15
value: 50
2023-03-01 11:58:30 +08:00
}
}