在Qt中,当我向布局添加小部件时,默认情况下它们是垂直居中的。有没有办法从上到下“列出”小部件而不是垂直居中?
答案 0 :(得分:36)
使用void QLayout::setAlignment ( Qt::Alignment alignment )
方法根据您的选择设置对齐方式。
答案 1 :(得分:20)
我觉得这比使用layout.setAlignment()
要复杂一点。直到现在它一直没有为我工作,当我发现如果你有扩展的小部件,你设置了最大高度,那么该小部件将不会按照你想要的方式对齐。
以下是即使我调用QTextBrowser()
,不顶部对齐layout.setAlignment(Qt.AlignTop)
小部件的示例代码。对不起,它是在Python中,但很容易转换为C ++(我已经多次走了)。
from PyQt4.QtCore import *
from PyQt4.QtGui import *
class MyWidget(QWidget):
"""
Create a widget that aligns its contents to the top.
"""
def __init__(self, parent=None):
QWidget.__init__(self, parent)
layout = QVBoxLayout()
label = QLabel('label:')
layout.addWidget(label)
info = QTextBrowser(self)
info.setMinimumHeight(100)
info.setMaximumHeight(200)
layout.addWidget(info)
# Uncomment the next line to get this to align top.
# layout.setAlignment(info, Qt.AlignTop)
# Create a progress bar layout.
button = QPushButton('Button 1')
layout.addWidget(button)
# This will align all the widgets to the top except
# for the QTextBrowser() since it has a maximum size set.
layout.setAlignment(Qt.AlignTop)
self.setLayout(layout)
if __name__ == '__main__':
import sys
app = QApplication(sys.argv)
widget = MyWidget()
widget.show()
widget.resize(QSize(900, 400))
app.exec_()
以下显式调用layout.setAlignment(info, Qt.AlignTop)
以使扩展文本窗口小部件起作用。
from PyQt4.QtCore import *
from PyQt4.QtGui import *
class MyWidget(QWidget):
"""
Create a widget that aligns its contents to the top.
"""
def __init__(self, parent=None):
QWidget.__init__(self, parent)
layout = QVBoxLayout()
label = QLabel('label:')
layout.addWidget(label)
info = QTextBrowser(self)
info.setMinimumHeight(100)
info.setMaximumHeight(200)
layout.addWidget(info)
# Uncomment the next line to get this to align top.
layout.setAlignment(info, Qt.AlignTop)
# Create a progress bar layout.
button = QPushButton('Button 1')
layout.addWidget(button)
# This will align all the widgets to the top except
# for the QTextBrowser() since it has a maximum size set.
layout.setAlignment(Qt.AlignTop)
self.setLayout(layout)
if __name__ == '__main__':
import sys
app = QApplication(sys.argv)
widget = MyWidget()
widget.show()
widget.resize(QSize(900, 400))
app.exec_()
答案 2 :(得分:10)
如果您有一个QVBoxLayout
并希望将固定大小的小部件堆叠在顶部,则只需添加一个垂直拉伸添加结尾:
layout.addStretch()
如果您有多个担架或其他拉伸项,则可以指定一个整数拉伸因子参数来定义它们的尺寸比。
另请参阅addStretch和addSpacerItem。
不确定这是否能解答您的原始问题,但这是我在Google上搜索并引导到此页面时的答案 - 所以它也可能对其他人有用。
答案 3 :(得分:8)
在两种解决方案之间进行比较之后,似乎:
myLayout.setAlignment(Qt.AlignTop)
适用于多个小部件对齐但是:
myLayout.setAlignment(myWidget, Qt.AlignTop)
仅适用于您添加到布局的第一个窗口小部件。 毕竟,解决方案还取决于您的小部件的QSizePolicy。
答案 4 :(得分:1)
如果您使用 QT creator,您只需在小部件底部添加一个“垂直间隔器”。