gpt4 book ai didi

qt - QVBox布局 : How to vertically align widgets to the top instead of the center

转载 作者:行者123 更新时间:2023-12-03 06:59:49 28 4
gpt4 key购买 nike

在 Qt 中,当我将小部件添加到布局中时,它们默认垂直居中。有没有办法从上到下“列出”小部件而不是垂直居中?

最佳答案

如果您有一个QVBoxLayout并且希望固定大小的小部件堆叠在顶部,您可以简单地在末尾附加一个垂直拉伸(stretch):

layout.addStretch()

如果您有多个拉伸(stretch)器或其他拉伸(stretch)项目,您可以指定一个整数拉伸(stretch)因子参数来定义它们的尺寸比例。

另请参阅addStretchaddSpacerItem .

在添加小部件之前和之后添加两个 layout.addStretch() 以使其垂直居中:

    layout.addStretch()
layout.addWidget(self.message)
layout.addWidget(self.userid_field)
layout.addWidget(self.password_field)
layout.addWidget(self.loginButton)
layout.addStretch()

不确定这是否回答了您最初的问题,但这是我在谷歌搜索并被引导到此页面时得到的答案 - 所以它可能对其他人也有用。

关于qt - QVBox布局 : How to vertically align widgets to the top instead of the center,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10082299/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com