Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想设置元素的高度。它应该是最高子元素的高度。
有没有类似的东西:
Parent { height: max(child1.height, child2.height) }
或者像:
Parent { height: stretchToChildren }
Math.max()是可变的(采用任意多个参数)。
Math.max()
根据实际布局,可能会使用Item.childrenRect属性。
Item.childrenRect
Item { width: childrenRect.width // width is now 100 height: childrenRect.height // height is now 100 Rectangle { width: 100 height: 100 } }
这是示例,如何使用 childrenRect