当前位置:   article > 正文

QML类型:StackLayout、GridLayout、ColumnLayout、RowLayout_qml rowlayout用法

qml rowlayout用法

StackLayout

一、描述

StackLayout 类提供了一个项目堆栈布局,其中一次只有一个项目可见。

与大多数其他布局相比,子项的 Layout.fillWidthLayout.fillHeight 属性默认为 true。因此,子项默认填充以匹配 StackLayout 的大小,只要它们的 Layout.maximumWidthLayout.maximumHeight 不阻止它。

以下代码将创建一个 StackLayout,其中只有“plum”矩形可见:

  1. StackLayout {
  2. id: layout
  3. anchors.fill: parent
  4. currentIndex: 1
  5. Rectangle {
  6. color: 'teal'
  7. implicitWidth: 200
  8. implicitHeight: 200
  9. }
  10. Rectangle {
  11. color: 'plum'
  12. implicitWidth: 300
  13. implicitHeight: 200
  14. }
  15. }

StackLayout 中的项目支持以下附加属性:

  • Layout.minimumWidth
  • Layout.minimumHeight
  • Layout.preferredWidth
  • Layout.preferredHeight
  • Layout.maximumWidth
  • Layout.maximumHeight
  • Layout.fillWidth
  • Layout.fillHeight

二、属性成员

1、count : int

属于布局的项目数。

2、currentIndex : int

当前在 StackLayout 中可见的子项的索引。 

三、附加属性成员

1、StackLayout.index : int

StackLayout 中每个子项的索引。

2、StackLayout.isCurrentItem : bool

当前子项是否 StackLayout 中的当前项。

3、StackLayout.layout : StackLayout

管理此子项的 StackLayout。


GridLayout

一、描述

网格布局。如果调整 GridLayout 的大小,则布局中的所有项目都将重新排列。它类似于基于小部件的 QGridLayout

默认情况下,项目将根据 flow 属性进行排列。流属性的默认值为 GridLayout.LeftToRight

如果指定了 columns 属性,它将被视为布局可以有多少列的最大限制,然后自动定位回到下一行的开头。 columns 属性仅在 flow GridLayout.LeftToRight 时使用。

rows 属性以类似的方式工作,但项目是垂直自动定位的。rows 属性仅在 flow GridLayout.TopToBottom 时使用。

可以通过设置 Layout.rowLayout.column 属性来指定希望项目占据哪个单元格。还可以通过设置 Layout.rowSpanLayout.columnSpan 属性来指定行跨度或列跨度。

GridLayout 中的项目支持以下附加属性:

  • Layout.row
  • Layout.column
  • Layout.rowSpan
  • Layout.columnSpan
  • Layout.minimumWidth
  • Layout.minimumHeight
  • Layout.preferredWidth
  • Layout.preferredHeight
  • Layout.maximumWidth
  • Layout.maximumHeight
  • Layout.fillWidth
  • Layout.fillHeight
  • Layout.alignment
  • Layout.margins
  • Layout.leftMargin
  • Layout.rightMargin
  • Layout.topMargin
  • Layout.bottomMargin 

二、属性成员

1、columnSpacing : real / rowSpacing : real

列间距 / 行间距。默认为 5。

2、columns : int

如果 flow GridLayout.LeftToRight,则此属性保存定位项目的列限制。 

     rows : int

如果 flow GridLayout.TopToBottom,则此属性保存已定位项目的行限制。

3、flow : enumeration

未设置显式单元格位置的项目的流向。它与 columns rows 属性一起使用,它们分别指定何时将流重置到下一行或下一列。

  • GridLayout.LeftToRight:默认,从左到右。
  • GridLayout.TopToBottom:从上到下。

4、layoutDirection : enumeration

网格布局的布局方向,它控制项目是从左到右还是从右到左布局。

  • Qt.LeftToRight:默认,项目从左到右排列。
  • Qt.RightToLeft:项目从右到左排列。

ColumnLayout

一、描述

GridLayout 相同,但只有一列。

ColumnLayout 中的项目支持以下附加属性:

  • Layout.minimumWidth
  • Layout.minimumHeight
  • Layout.preferredWidth
  • Layout.preferredHeight
  • Layout.maximumWidth
  • Layout.maximumHeight
  • Layout.fillWidth
  • Layout.fillHeight
  • Layout.alignment
  • Layout.margins
  • Layout.leftMargin
  • Layout.rightMargin
  • Layout.topMargin
  • Layout.bottomMargin
  1. ColumnLayout{
  2. spacing: 2
  3. Rectangle {
  4. Layout.alignment: Qt.AlignCenter
  5. color: "red"
  6. Layout.preferredWidth: 40
  7. Layout.preferredHeight: 40
  8. }
  9. Rectangle {
  10. Layout.alignment: Qt.AlignRight
  11. color: "green"
  12. Layout.preferredWidth: 40
  13. Layout.preferredHeight: 70
  14. }
  15. Rectangle {
  16. Layout.alignment: Qt.AlignBottom
  17. Layout.fillHeight: true
  18. color: "blue"
  19. Layout.preferredWidth: 70
  20. Layout.preferredHeight: 40
  21. }
  22. }

二、属性成员

1、layoutDirection : enumeration

见上面 GridLayout

2、spacing : real

单元格间距。默认为 5。


RowLayout

一、描述

GridLayout 相同,但只有一行。用法与 ColumnLayout 相同。

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

闽ICP备14008679号