当前位置:   article > 正文

《快速掌握QML》第二章 布局_qml垂直居中

qml垂直居中

目录

2.1 锚布局

2.2 布局定位器

2.3 布局管理器

2.4 本章小结


QML中,我们可以使用四种方式进行布局。最简单的就是设置元素的x和y属性,这就相当于在PyQt中使用控件的move()方法。其他三种分别是锚布局、布局定位器以及布局管理器。在本章,我们会详细了解这三种布局的使用方法。

2.1 锚布局

所谓锚布局,就是设置好子元素的某个锚定线相对于其他元素某个锚定线的位置。每个元素都 有六条锚定线:top顶部线、bottom底部线、left左侧线、right右侧线、horizontalCenter水平居中线以及verticalCenter垂直居中线。如下图所示。

在QML代码中,我们通过设置元素的anchors属性来进行锚布局,请看下方示例代码。

  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. width: 300
  5. height: 200
  6. color: "blue"
  7. Rectangle {
  8. id: childRect
  9. width: 100
  10. height: 100
  11. color: "red"
  12. anchors.left: root.left // 1
  13. anchors.verticalCenter: parent.verticalCenter // 2
  14. }
  15. }

运行结果:

代码解释:

这个示例中一共有两个矩形元素,蓝色的是父元素,红色的是子元素。

1. anchors.left属性表示子元素的左侧线,将该属性的值设置为root.left表示让子元素的左侧线与父元素的左侧线重合,那红色矩形自然就会包含在蓝色矩形的左侧了。

2. anchors.verticalCenter表示子元素的垂直居中线,将该属性的值设置为root.verticalCenter表示让子元素的垂直居中线与父元素的垂直居中线重合,那红色矩形就会在蓝色矩形垂直居中的位置上。

当然,各个元素在布局时,锚定线不一定是重合的,可能会有一些偏移。我们可以通过下面几个属性设置偏移量。

属性解释
anchors.topMargin元素上边距,需要先设置好anchors.top属性的值
anchors.bottomMargin元素下边距,需要先设置好anchors.bottom属性的值
anchors.leftMargin元素左边距,需要先设置好anchors.left属性的值
anchors.rightMargin元素右边距,需要先设置好anchors.right属性的值
anchors.margins

元素上下左右四个边距(同等距离),需要先设置好anchors.top,anchors.bottom, anchors.left和anchors.right属性的值。如果元素只元设置了anchors.top,那只有上边距起作用。

anchors.horizontalCenterOffset相对于水平居中线位置的偏移量,需要先设置好anchors.horizontalCenter属性的值
anchors.vrerticalCenterOffset相对于垂直居中线位置的偏移量,需要先设置好anchors.vrerticalCenter属性的值

现在我们将上方的代码修改下,给元素添加些偏移量。

  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. width: 300
  5. height: 200
  6. color: "blue"
  7. Rectangle {
  8. id: childRect
  9. width: 100
  10. height: 100
  11. color: "red"
  12. anchors.left: root.left
  13. anchors.leftMargin: 20
  14. anchors.verticalCenter: parent.verticalCenter
  15. anchors.verticalCenterOffset: 20
  16. }
  17. }

 运行结果:

代码解释:

在设置好元素的左侧线和垂直居中线位置后,我们通过以下两行代码设置了红色矩形的左边距以及相对于垂直居中位置上的偏移量:

  • anchors.leftMargin: 20
  • anchors.verticalCenterOffset: 20

 注:偏移量可以是浮点数。

锚布局还有两个方便的属性:anchors.centerInanchors.fill。前者可以将当前元素放在其他元素的正中位置,后者则可以让当前元素填充到其他元素中。请看下方示例代码。

  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. width: 300
  5. height: 200
  6. color: "blue"
  7. Rectangle {
  8. id: childRect1
  9. width: 50
  10. height: 50
  11. color: "red"
  12. anchors.fill: root // 1
  13. }
  14. Rectangle {
  15. id: childRect2
  16. width: 50
  17. height: 50
  18. color: "green"
  19. anchors.centerIn: root // 2
  20. }
  21. }

 运行结果:

 代码解释:

1. childRect1矩形元素设置了anchors.fill属性,它会填充整个root矩形元素。其实就是让childRect1元素与root元素的顶部线、左侧线、底部以及右侧线重合,所以这行代码可以换成下面几行代码:

  1. anchors.top: root.top
  2. anchors.left: root.left
  3. anchors.bottom: root.bottom
  4. anchors.right: root.right

2. childRect2矩形元素设置了anchors.center属性,它会处在root矩形元素的正中位置。其实就是让childRect1元素与root元素的水平居中线以及垂直居中线重合,所以这行代码可以换成下面几行代码:

  1. anchors.horizontalCenter: root.horizontalCenter
  2. anchors.verticalCenter: root.verticalCenter

2.2 布局定位器

锚布局需要一个个地去设置元素的anchors属性,而布局定位器可以很方便地排列多个元素。QML提供了四种定位器:

  • Row(行定位器)
  • Column(列定位器)
  • Grid(网格定位器)
  • Flow(流式定位器)

每个定位器都有各自的特点,我们现在来一个个讲解下。

Row

行定位器Row用来水平排列各个元素,请看下方示例代码。

  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. width: 300
  5. height: 200
  6. Row {
  7. anchors.centerIn: root // 1
  8. spacing: 10 // 2
  9. Rectangle { // 3
  10. id: rect1
  11. width: 50
  12. height: 50
  13. color: "red"
  14. }
  15. Rectangle { // 3
  16. id: rect2
  17. width: 50
  18. height: 50
  19. color: "green"
  20. }
  21. Rectangle { // 3
  22. id: rect3
  23. width: 50
  24. height: 50
  25. color: "blue"
  26. }
  27. }
  28. }

运行结果:

 代码解释:

1. 先用锚布局设置行定位器在窗口上的位置。

2. spacing属性用来设置各个子元素之间的水平空格距离。

3. 行定位器中有三个矩形子元素,颜色分别是红、绿、蓝。添加到行定位器中的子元素默认从左到右进行排列。我们可以设置layoutDirection属性让子元素从右到左进行排列,代码如下所示。

  1. Row {
  2. anchors.centerIn: root
  3. spacing: 10
  4. layoutDirection: Qt.RightToLeft // 默认是Qt.LeftToRight
  5. ...
  6. }

Column

列定位器Column用来垂直排列各个元素,请看下方示例代码。

  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. width: 300
  5. height: 200
  6. Column {
  7. anchors.centerIn: root // 1
  8. spacing: 10 // 2
  9. Rectangle { // 3
  10. id: rect1
  11. width: 50
  12. height: 50
  13. color: "red"
  14. }
  15. Rectangle { // 3
  16. id: rect2
  17. width: 50
  18. height: 50
  19. color: "green"
  20. }
  21. Rectangle { // 3
  22. id: rect3
  23. width: 50
  24. height: 50
  25. color: "blue"
  26. }
  27. }
  28. }

运行结果: 

 代码解释:

1. 先用锚布局设置列定位器在窗口上的位置。

2. spacing属性用来设置各个子元素之间的垂直空格距离。

3. 列定位器中有三个矩形子元素,颜色分别是红、绿、蓝。添加到列定位器中的子元素会从上到下进行排列。

Grid

网格定位器将各个子元素以网格形式排列,使用这个定位器时我们要定义网格的行列数。请看下方示例代码。

  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. width: 300
  5. height: 200
  6. Grid {
  7. anchors.centerIn: root // 1
  8. rows: 2 // 2
  9. columns: 2
  10. rowSpacing: 10 // 3
  11. columnSpacing: 10
  12. Rectangle { // 4
  13. id: rect1
  14. width: 50
  15. height: 50
  16. color: "red"
  17. }
  18. Rectangle { // 4
  19. id: rect2
  20. width: 50
  21. height: 50
  22. color: "green"
  23. }
  24. Rectangle { // 4
  25. id: rect3
  26. width: 50
  27. height: 50
  28. color: "blue"
  29. }
  30. Rectangle { // 4
  31. id: rect4
  32. width: 50
  33. height: 50
  34. color: "yellow"
  35. }
  36. }
  37. }

运行结果:

代码解释:

1. 先用锚布局设置网格定位器在窗口上的位置。

2. rows用来设置行数,coloumns用来设置列数。

3. rowSpacing属性用来设置各个子元素之间的水平空格距离,columnSpacing属性用来设置各个子元素之间的垂直空格距离。

4. 网格定位器中有四个矩形子元素,颜色分别是红、绿、蓝、黄。添加到网格定位器中的子元素默认会以从左到右,从上到下的顺序进行排列。一行放满之后,再放下一行。我们可以通过修改layoutDirection属性和flow属性来改变元素排列的顺序。

注:layoutDirection属性决定元素是先放左边还是先放右边,而flow属性决定元素是先填满行还是先填满列。

如果我们想让元素从右到左进行排列,可以把layoutDirection属性设置成Qt.RightToLeft,代码如下所示。

  1. Grid {
  2. anchors.centerIn: root
  3. rows: 2
  4. columns: 2
  5. rowSpacing: 10
  6. columnSpacing: 10
  7. layoutDirection: Qt.RightToLeft // 默认是Qt.LeftToRight
  8. ...
  9. }

 如果我们想让元素先填满列,一列填满后再换另一列,可以把flow属性设置成Grid.TopToBottom,代码如下所示。

  1. Grid {
  2. anchors.centerIn: root
  3. rows: 2
  4. columns: 2
  5. rowSpacing: 10
  6. columnSpacing: 10
  7. flow: Grid.TopToBottom // 默认是Gird.LeftToRight
  8. ...
  9. }

Flow

流式定位器跟网格定位器很像,流式定位器不需要设置行列数,但需要设置宽高,如果某个元素放入这个定位器时,所有元素的总宽度或高度大于定位器的宽度或高度,那它就会将这个元素放在下一行或下一列。请看下方示例代码。

  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. width: 300
  5. height: 200
  6. Flow {
  7. anchors.centerIn: root // 1
  8. width: 150 // 2
  9. height: 50
  10. Rectangle { // 3
  11. id: rect1
  12. width: 50
  13. height: 50
  14. color: "red"
  15. }
  16. Rectangle { // 3
  17. id: rect2
  18. width: 50
  19. height: 50
  20. color: "green"
  21. }
  22. Rectangle { // 3
  23. id: rect3
  24. width: 80
  25. height: 50
  26. color: "blue"
  27. }
  28. Rectangle { // 3
  29. id: rect4
  30. width: 50
  31. height: 50
  32. color: "yellow"
  33. }
  34. }
  35. }

运行结果:

 代码解释:

1. 先用锚布局设置流式定位器在窗口上的位置。

2. 设置流式定位器的宽高。

3. 流式定位器中有四个矩形子元素,颜色分别是红、绿、蓝、黄。蓝色矩形的宽度为80像素,其他矩形的宽度为50像素。因为流式定位器默认是先填满行,所以我们应该看矩形元素的总宽度是不是大于定位器的宽度。当红色和绿色矩形放入后,定位器第一行宽度还剩下150-100=50像素大小,但是蓝色矩形宽度为80像素,所以蓝色矩形只能放在下一行。

我们可以通过修改flow属性来让流式定位器先填满列,那这时候我们就要从高度这方面看是否要换列了。请看下方示例代码。

  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. width: 300
  5. height: 200
  6. Flow {
  7. anchors.centerIn: root
  8. width: 50
  9. height: 150
  10. flow: Grid.TopToBottom // 默认是Grid.LeftToRight
  11. Rectangle {
  12. id: rect1
  13. width: 50
  14. height: 50
  15. color: "red"
  16. }
  17. Rectangle {
  18. id: rect2
  19. width: 50
  20. height: 50
  21. color: "green"
  22. }
  23. Rectangle {
  24. id: rect3
  25. width: 50
  26. height: 80
  27. color: "blue"
  28. }
  29. Rectangle {
  30. id: rect4
  31. width: 50
  32. height: 50
  33. color: "yellow"
  34. }
  35. }
  36. }

运行结果:

我们还可以将layoutDirection属性设置为Qt.RightToLeft,让元素从右往左放置(默认是Qt.LeftToRight)。也可以设置spacing属性让各个元素之间出现间隔。注意设置spacing属性后,流式定位器会把间隔大小也算进去。比方说定位器高度是100,间隔设为10,矩形元素高度为50,那此时第一列只能够放入一个矩形,因为100 - 50 - 10 = 40,剩余40像素小于矩形高度,所以第二个矩形只能放在第二列。请看下方示例代码。

  1. import QtQuick 2.0
  2. Rectangle {
  3. id: root
  4. width: 300
  5. height: 200
  6. Flow {
  7. anchors.centerIn: root
  8. width: 50
  9. height: 100
  10. spacing: 10
  11. flow: Grid.TopToBottom
  12. Rectangle {
  13. id: rect1
  14. width: 50
  15. height: 50
  16. color: "red"
  17. }
  18. Rectangle {
  19. id: rect2
  20. width: 50
  21. height: 50
  22. color: "green"
  23. }
  24. Rectangle {
  25. id: rect3
  26. width: 50
  27. height: 50
  28. color: "blue"
  29. }
  30. }
  31. }

2.3 布局管理器

布局管理器包括以下三种:

  1. RowLayout(行布局管理器)
  2. ColumnLayout(列布局管理器)
  3. GridLayout(网格布局管理器)

管理器和定位器的用法类似,不过我们可以用管理器进行更细微的布局操作。使用布局管理器前,需要先导入Layouts模块。

import QtQuick.Layouts 1.1

RowLayout

RowLayout就是水平布局各个子元素,跟Row定位器类似,不过添加到RowLayout中的各个元素可以使用以下附加属性。

属性解释
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. import QtQuick 2.0
  2. import QtQuick.Layouts 1.1
  3. Rectangle {
  4. id: root
  5. width: 300
  6. height: 200
  7. RowLayout {
  8. anchors.centerIn: parent // 1
  9. width: root.width // 2
  10. height: root.height
  11. Rectangle {
  12. id: rect1
  13. width: 50
  14. height: 50
  15. color: "red"
  16. Layout.leftMargin: 20 // 3
  17. }
  18. Rectangle {
  19. id: rect2
  20. width: 50
  21. height: 50
  22. color: "green"
  23. Layout.fillHeight: true // 4
  24. }
  25. Rectangle {
  26. id: rect3
  27. width: 50
  28. height: 50
  29. color: "blue"
  30. Layout.fillWidth: true // 5
  31. }
  32. }
  33. }

运行结果:

 代码解释:

1. 先用锚布局设置行布局管理器在窗口上的位置。

2. 设置行布局管理器的大小,在这个示例中我们让它等同于窗口大小。

3. 设置红色矩形元素的左边距为20,并设置它的对齐方式为顶部对齐。

4. 让绿色矩形元素填满管理器中剩余的高度空间,因为同列上没有其他元素,所以绿色矩形的高度就等于布局管理(或窗口)的高度了。

5. 让蓝色矩形元素填满管理器中剩余的宽度空间。

ColumnLayout

ColumnLayout就是垂直布局各个子元素,只是跟RowLayout管理器在布局方向上不同,附加属性是一样的,笔者这里就不再赘述。

GridLayout

GridLayout就是以网格的形式布局各个子元素,跟Grid定位器类似。GridLayout管理器赋予子元素的附加属性比RowLayout和ColumnLayout多了四个

属性解释
Layout.row元素所在的行索引(0表示第1行)
Layout.column元素所在的列索引(0表示第1列)
Layout.rowSpan元素占据的行数(默认是1)
Layout.columnSpan元素占据的列数(默认是1)

请看下方示例代码。

  1. import QtQuick 2.0
  2. import QtQuick.Layouts 1.1
  3. Rectangle {
  4. id: root
  5. width: 300
  6. height: 200
  7. GridLayout {
  8. anchors.centerIn: parent // 1
  9. rows: 2 // 2
  10. columns: 2
  11. Rectangle {
  12. id: rect1
  13. width: 50
  14. height: 50
  15. color: "red"
  16. Layout.rowSpan: 2 // 3
  17. }
  18. Rectangle {
  19. id: rect2
  20. width: 50
  21. height: 50
  22. color: "green"
  23. Layout.row: 1 // 4
  24. Layout.column: 1
  25. }
  26. Rectangle {
  27. id: rect3
  28. width: 50
  29. height: 50
  30. color: "blue"
  31. Layout.row: 0 // 4
  32. Layout.column: 1
  33. }
  34. }
  35. }

运行结果:

 代码解释:

1. 先用锚布局设置网格布局管理器在窗口上的位置。

2. 设置王额布局管理器的行列数。

3. 设置红色矩形元素占两行。

4. 调换绿色和蓝色两个矩形的位置。现在蓝色矩形的在网格布局管理器中的坐标为(0, 1),绿色矩形为(1, 1)。

2.4 本章小结

1. QML中的RowLayout、ColumnLayout和GridLayout相当于PyQt中的QHorizontalLayout、QVerticalLayout和QGridLayout。

2. 锚布局是最常见的,会和其他布局方式搭配使用。

3. 管理器和定位器用法是类似的,只不过多了一些附加属性。可以先看下定位器的用法,再去学习管理器。

3. 布局定位器或管理器相互之间是可以嵌套的,也就是说可以嵌套布局,代码如下所示。

  1. // 布局定位器嵌套
  2. Row {
  3. Column {
  4. }
  5. Column {
  6. }
  7. }
  8. // 布局管理器嵌套
  9. RowLayout {
  10. ColumnLayout {
  11. }
  12. ColumnLayout {
  13. }
  14. }
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号