作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是一个简单的例子:
RowLayout {
spacing: 5
ColumnLayout {
Text {
Layout.fillWidth: true
text: qsTr("Some text")
}
Rectangle {
Layout.fillWidth: true
height: 100
color: "red"
}
}
ColumnLayout {
Text {
Layout.fillWidth: true
text: qsTr("Some more text")
}
Rectangle {
Layout.fillWidth: true
height: 50
color: "red"
}
}
}
width
中产生两个相等的字段的
RowLayout
,但为什么我必须指定
Layout.fillWidth: true
为了所有的 child ?
Layout.fillWidth: true
的相同示例来自
Text
成分:
RowLayout {
spacing: 5
ColumnLayout {
Text {
text: qsTr("Some text")
}
Rectangle {
Layout.fillWidth: true
height: 100
color: "red"
}
}
ColumnLayout {
Text {
text: qsTr("Some more text")
}
Rectangle {
Layout.fillWidth: true
height: 50
color: "red"
}
}
}
RowLayout
的两个字段在
width
中不会相同.
最佳答案
您可以使用 Layout.preferredWidth
设置行元素的大小(绝对或相对):
import QtQuick.Layouts 1.3
RowLayout {
anchors.fill: parent
spacing: 0
Rectangle {
Layout.preferredWidth: parent.width / 2
Layout.fillHeight: true
color: "green"
}
Rectangle {
Layout.fillWidth: true
Layout.fillHeight: true
color: "yellow"
}
}
关于qt - 如何在 QML 中将 RowLayout 正确拆分为两个相等的字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40778958/
我是一名优秀的程序员,十分优秀!