mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-02 00:51:33 +08:00
118 lines
3.1 KiB
QML
118 lines
3.1 KiB
QML
|
import QtQuick
|
||
|
import QtQuick.Controls
|
||
|
import QtQuick.Layouts
|
||
|
import QtQuick.Window
|
||
|
import FluentUI
|
||
|
import "qrc:///example/qml/component"
|
||
|
|
||
|
FluScrollablePage{
|
||
|
|
||
|
title:"FlipView"
|
||
|
|
||
|
FluArea{
|
||
|
Layout.fillWidth: true
|
||
|
height: 340
|
||
|
paddings: 10
|
||
|
Layout.topMargin: 20
|
||
|
ColumnLayout{
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
FluText{
|
||
|
text:"水平方向的FlipView"
|
||
|
}
|
||
|
FluFlipView{
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_1.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_2.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_3.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
CodeExpander{
|
||
|
Layout.fillWidth: true
|
||
|
Layout.topMargin: -1
|
||
|
code:'FluFlipView{
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_1.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_1.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_1.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
}
|
||
|
'
|
||
|
}
|
||
|
|
||
|
FluArea{
|
||
|
Layout.fillWidth: true
|
||
|
height: 340
|
||
|
paddings: 10
|
||
|
Layout.topMargin: 20
|
||
|
ColumnLayout{
|
||
|
anchors.verticalCenter: parent.verticalCenter
|
||
|
FluText{
|
||
|
text:"垂直方向的FlipView"
|
||
|
}
|
||
|
FluFlipView{
|
||
|
vertical:true
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_1.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_2.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_3.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
CodeExpander{
|
||
|
Layout.fillWidth: true
|
||
|
Layout.topMargin: -1
|
||
|
code:'FluFlipView{
|
||
|
vertical:true
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_1.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_1.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
Image{
|
||
|
source: "qrc:/example/res/image/banner_1.jpg"
|
||
|
asynchronous: true
|
||
|
fillMode:Image.PreserveAspectCrop
|
||
|
}
|
||
|
}
|
||
|
'
|
||
|
}
|
||
|
}
|