我希望按钮保持尽可能的小,并聚集到HBox的中心,而不是向右拖动。

import sys
from random import randint
from PyQt5.QtWidgets import QApplication, QFrame, QHBoxLayout, QPushButton, QVBoxLayout, QWidget, QLabel

app = QApplication(sys.argv)
Frame = QFrame()

vbox = QVBoxLayout(Frame)
for i1 in range(5):
    hbox = QHBoxLayout()
    hbox.setContentsMargins(0, 0, 0, 0)
    hbox.addStretch()

    for i2 in range(randint(1,10)):
        bb = QPushButton(str(i2))
        hbox.addWidget(bb)
    vbox.addLayout(hbox)

Frame.show()
app.exec_()

最佳答案

您可以在布局上使用setAlignment()方法来调整位于父QFrame中心的按钮:

hbox.setAlignment(Qt.AlignCenter)
vbox.setAlignment(Qt.AlignCenter)


如果您想使用.addStretch()函数来填充空间,还可以再次使用它(在内部for循环之后),以在按钮之后也拉伸空间。左侧的单个拉伸将扩展并向右推动按钮:

hbox.addStretch()  # epands and pushes to the right
for i2 in range(randint(1,10)):
    bb = QPushButton(str(i2))
    hbox.addWidget(bb)
hbox.addStretch()  # expands as well and compensates the first

关于python - PyQt5。如何在QHBoxLayout中将按钮居中?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49267604/

10-12 17:10