mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 08:31:33 +08:00
48 lines
1.3 KiB
QML
48 lines
1.3 KiB
QML
import QtQuick
|
||
import QtQuick.Layouts
|
||
import QtQuick.Window
|
||
import QtQuick.Controls
|
||
import FluentUI
|
||
import "qrc:///example/qml/component"
|
||
|
||
FluScrollablePage{
|
||
|
||
title:"Carousel"
|
||
|
||
FluArea{
|
||
Layout.fillWidth: true
|
||
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: {
|
||
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"}])
|
||
}
|
||
}
|
||
}
|
||
}
|
||
CodeExpander{
|
||
Layout.fillWidth: true
|
||
Layout.topMargin: -1
|
||
code:'FluCarousel{
|
||
width: 400
|
||
height: 300
|
||
Component.onCompleted: {
|
||
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"}])
|
||
}
|
||
}'
|
||
}
|
||
}
|