有什麼辦法去除QML佈局的構成要素的開始和結束的利潤率?QtQuick佈局利潤率
這裏是ColumnLayout與幾個孩子的例子。現在的問題是如何消除這些頂部和底部邊緣,並重新分配所有的孩子一起父佈局的最大高度。
ColumnLayout {
id: dotColumn
anchors.horizontalCenter: bg.horizontalCenter
height: root.height
Repeater {
id: repeater
model: root.model
Item {
id: activeDot_container
property int radius: 15
width: radius * 2
height: radius * 2
Rectangle {
anchors.centerIn: parent
radius: parent.radius
width: radius * 2
height: radius * 2
color: Palette.colors['deepPurple']['500']
}
}
}
}
好的,您必須至少向我們展示您的代碼,以便我們可以幫助您。 – folibis
@folibis我的壞。代碼附加。 –
您的代碼不完整,所以我只能假設如何解決這個問題。試着在'activeDot_container'項目 – folibis