当前位置:   article > 正文

RowLayout自动撑满父容器[QML]_qml rowlayout

qml rowlayout

Rowlayout,qml布局里的一种布局器,它类似于qwidget里的QHBoxLayout,可以把它想象成一个横着摆放的矩形的箱子,添加进去的控件就横着塞进去,类似下图

在这里插入图片描述

qwidget里所有控件会被均匀的撑满父容器,但是在qml里是需要设置一些属性了,主要是 Layout.fillWidthLayout.fillHeight下面我们用代码来说明

先看效果图
在这里插入图片描述

代码

import QtQuick 2.13
import QtQuick.Window 2.13
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.3
ApplicationWindow{
    id: mainwindow
    visible: false
    width: 600
    height: 600
    flags: Qt.FramelessWindowHint
    title: qsTr("Hello World")
    color: "BLACK"
    RowLayout{

        spacing:5
        anchors.fill: parent
        Rectangle{
            color:"red"

            Layout.fillWidth: parent.width
            Layout.fillHeight: parent.height
        }
        Rectangle{
            color:"red"

            Layout.fillWidth: parent.width
            Layout.fillHeight: parent.height
        }Rectangle{
            color:"red"

            Layout.fillWidth: parent.width
            Layout.fillHeight: parent.height
        }Rectangle{
            color:"red"

            Layout.fillWidth: parent.width
            Layout.fillHeight: parent.height
        }Rectangle{
            color:"red"

            Layout.fillWidth: parent.width
            Layout.fillHeight: parent.height
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

我试着又添加了一些矩形

在这里插入图片描述

可以看到采用上述代码设置后 它就是遵循均匀的分布在父容器这个规则的,当然它还有其他策略,后续如果我会用到,会继续写出来。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/334732
推荐阅读
相关标签
  

闽ICP备14008679号