-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfaffd3
commit f20dc1e
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import QtQuick 2.15 | ||
import QtQuick.Layouts 1.15 | ||
import QtQuick.Window 2.15 | ||
import QtQuick.Controls 2.15 | ||
import QtGraphicalEffects 1.15 | ||
import FluentUI 1.0 | ||
|
||
FluScrollablePage{ | ||
|
||
title:"Carousel" | ||
|
||
FluArea{ | ||
width: parent.width | ||
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:/res/image/banner_1.jpg"},{url:"qrc:/res/image/banner_2.jpg"},{url:"qrc:/res/image/banner_3.jpg"}]) | ||
} | ||
} | ||
} | ||
} | ||
} |