我想知道是否有可能在qml中创建一个元素网格,它完全均匀地填充网格/父级的宽度和高度:
Grid {
columns: 2
Repeater {
model: 4
Rectangle {
width: /* ??? */
height: / * ??? */
}
}
}
我认为必须在这里设置绝对值。使用anchors.fill: parent
不起作用,以及类似width: parent.width / 2
。
答案 0 :(得分:5)
我认为您忘记设置父级(Grid
元素)锚点。你也总是可以用'id。
Grid {
anchors.fill: parent
columns: 2
rows: 3
Repeater {
model: 6
Rectangle {
width: parent.width / parent.columns
height: parent.height / parent.rows
}
}
}