qml 流式布局--flow
Posted lodger47
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了qml 流式布局--flow相关的知识,希望对你有一定的参考价值。
import QtQuick 2.9
import QtQuick.Window 2.2
import QtQuick.Controls 2.2
Window {
visible: true
width: 640
height: 480
title: qsTr("Hello World")
Item {
id: rootItem
anchors.fill: parent
// 流式布局
Flow {
anchors.left: parent.left
anchors.right: parent.right
flow: Flow.LeftToRight
//flow: Flow.TopToBottom // 从上往下
Rectangle {
height: 100
width: rootItem.width/2
color: "red"
}
Rectangle {
height: 100
width: rootItem.width/2
color: "yellow"
}
Rectangle {
height: 100
width: rootItem.width/2
color: "blue"
}
}
}
}
以上是关于qml 流式布局--flow的主要内容,如果未能解决你的问题,请参考以下文章
理解 UICollection Flow Layout 流式布局