子元素可以均匀填充网格吗?

时间:2012-05-20 21:47:51

标签: qml

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

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

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

1 个答案:

答案 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
        }
    }
}