3

我想知道是否可以在 qml 中创建一个元素网格,它完全均匀地填充网格/父级的宽度和高度:

Grid {
    columns: 2
    Repeater {
        model: 4
        Rectangle {
            width: /* ??? */
            height: / * ??? */
        }
    }
}

我认为必须在这里设置绝对值。使用anchors.fill: parent将不起作用,以及类似width: parent.width / 2.

4

1 回答 1

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
        }
    }
}
于 2012-05-21T06:11:46.570 回答