- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
可能相关:https://stackoverflow.com/a/30860285/3363018
我一直在尝试创建一个 QML 布局,其中的项目跨越可变数量的行和列。例如,一个跨越两行和四列的矩形,其右侧的一个跨越一行和两列,下面的一个跨越三行和五列。创建此内容的一般尝试如下:
import QtQuick 2.5
import QtQuick.Layouts 1.2
import QtQuick.Controls 1.4
ApplicationWindow {
visible: true
width: 640
height: 480
title: qsTr("Hello World")
GridLayout {
anchors.fill: parent
columns: 5
rows: 2
Rectangle {
Layout.column: 0
Layout.columnSpan: 4
Layout.row: 0
Layout.rowSpan: 2
Layout.fillHeight: true
Layout.fillWidth: true
color: "red"
}
Rectangle {
Layout.column: 4
Layout.columnSpan: 1
Layout.row: 0
Layout.rowSpan: 2
Layout.fillHeight: true
Layout.fillWidth: true
color: "green"
}
Rectangle {
Layout.column: 0
Layout.columnSpan: 5
Layout.row: 2
Layout.rowSpan: 3
Layout.fillHeight: true
Layout.fillWidth: true
color: "blue"
}
}
}
结果如下:
如您所见,Layout.rowSpan 和 Layout.columnspan 似乎不起作用。相反,顶部两行似乎占据 1:1 而不是 4:1,顶部与底部的比例是 1:1 而不是 2:3。我怀疑这与 Layout.fillHeight 和 Layout.fillWidth 有关。 The documentation状态:
If this property is true, the item will be as wide as possible while respecting the given constraints.
但我不确定在这种情况下“给定的约束”是什么。我原本希望它包含行和列跨度,但似乎没有。
我可能可以直接计算项目的宽度和高度(或者可能是 Layout.preferredWidth 和 Layout.preferredHeight),但这似乎使 Layout.rowSpan 和 Layout.columnSpan 完全多余。有没有办法根据网格行和列自动计算高度?
最佳答案
我遇到了和你一样的问题,但我认为很容易误解 GridLayout 正在做什么。如果您的网格有 5 列和 2 行,您会得到类似这样的内容,其中每个 O 代表一个单元格:
grid
OOOOO
OOOOO
rowSpan 确定对象的TALL 高度。
columnSpan 确定对象的WIDE 程度。
您想要将这些放入此网格中:
r1 r2 r3
OOOO OO OOOOO
OOOO OOOOO
OOOOO
不难看出,但它们不适合。
这是我对 12x12 网格的解决方案,应该很容易遵循。 GridLayout 似乎不会自动知道分配给其子级的宽度和高度。但这没关系,您可以轻松定义它。本质上,我将矩形传递给我的两个短两个函数。您可以传递 rowSpan 或 columnSpan 但我更喜欢这种方式,因为我不必记住哪个函数需要什么:
GridLayout {
id : grid
anchors.fill: parent
rows : 12
columns : 12
property double colMulti : grid.width / grid.columns
property double rowMulti : grid.height / grid.rows
function prefWidth(item){
return colMulti * item.Layout.columnSpan
}
function prefHeight(item){
return rowMulti * item.Layout.rowSpan
}
Rectangle {
color : 'red'
Layout.rowSpan : 10
Layout.columnSpan: 2
Layout.preferredWidth : grid.prefWidth(this)
Layout.preferredHeight : grid.prefHeight(this)
}
Rectangle {
color : 'yellow'
Layout.rowSpan : 10
Layout.columnSpan: 10
Layout.preferredWidth : grid.prefWidth(this)
Layout.preferredHeight : grid.prefHeight(this)
}
Rectangle {
id : greenRect
color : 'green'
Layout.rowSpan : 2
Layout.columnSpan : 12
Layout.preferredWidth : grid.prefWidth(this)
Layout.preferredHeight : grid.prefHeight(this)
}
}
结果在这里:
关于qt - 如何创建具有成比例大小的项目的 QML GridLayout?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34027727/
以下问题:我有一个包含很多 div 的滚动页面。每个 div 都有一个 bg-image 和另一个带有文本的 div。 blabla anothe
在 CSS 中是否可以按比例设置一个属性到另一个属性?我知道我可以用 java-script 做到这一点,但如果用 CSS 可以做到这一点,我会很高兴。 例如:width:10 % height; 如
我正在尝试设置一个看起来像这样的约束(红色父 View 中的 subview 白色): 我将如何在界面生成器中执行此操作(最好),如果不可能则编写代码,但我应该将什么作为宽度来让 IB 满意? 我试过
我试图将 View 元素放置在 UIImageView 中,然后对 UIImageView 的宽度进行动画处理以填充 super View 。我正在使用自动布局约束来定位 View 并为其设置动画。在
我是一名优秀的程序员,十分优秀!