FluentUI/example/qml/page/T_Carousel.qml

48 lines
1.3 KiB
QML
Raw Normal View History

2023-05-22 16:17:51 +08:00
import QtQuick
2023-03-30 21:52:55 +08:00
import QtQuick.Layouts
import QtQuick.Window
import QtQuick.Controls
import FluentUI
2023-04-22 16:02:52 +08:00
import "../component"
2023-03-23 18:05:42 +08:00
FluScrollablePage{
title:"Carousel"
FluArea{
2023-04-03 09:32:06 +08:00
Layout.fillWidth: true
2023-03-23 18:05:42 +08:00
height: 370
paddings: 10
Layout.topMargin: 20
Column{
spacing: 15
anchors{
verticalCenter: parent.verticalCenter
left:parent.left
}
FluText{
text:"轮播图支持无限轮播无限滑动用ListView实现的组件"
}
FluCarousel{
id:carousel
Layout.topMargin: 20
Layout.leftMargin: 5
Component.onCompleted: {
2023-04-27 09:38:57 +08:00
carousel.setData([{url:"qrc:/example/res/image/banner_1.jpg"},{url:"qrc:/example/res/image/banner_2.jpg"},{url:"qrc:/example/res/image/banner_3.jpg"}])
2023-03-23 18:05:42 +08:00
}
}
}
}
2023-04-06 17:32:21 +08:00
CodeExpander{
Layout.fillWidth: true
2023-04-19 17:25:46 +08:00
Layout.topMargin: -1
2023-04-06 17:32:21 +08:00
code:'FluCarousel{
width: 400
height: 300
Component.onCompleted: {
2023-04-27 09:38:57 +08:00
setData([{url:"qrc:/example/res/image/banner_1.jpg"},{url:"qrc:/example/res/image/banner_2.jpg"},{url:"qrc:/example/res/image/banner_3.jpg"}])
2023-04-06 17:32:21 +08:00
}
}'
}
2023-03-23 18:05:42 +08:00
}