PySide:设置QVBoxLayout的宽度

时间:2013-11-06 14:45:41

标签: python pyside

使用PySide,我在QVBoxLayout中有一套QWidget

vlayout = QVBoxLayout()
vlayout.addWidget(self.a_label)
vlayout.addWidget(self.a)

我可以用

设置小部件的宽度
self.a.setFixedWidth(60)

但如果我尝试使用QVBoxLayout

设置setGeometry的宽度
vlayout.setGeometry(QRect(100, 100, 100, 100))

我没有改变。

如何设置QVBoxLayout的宽度?

1 个答案:

答案 0 :(得分:12)

我解决了,将QVBoxLayout放入QWidget并修正了QWidget的宽度

v_widget = QWidget()
v_widget.setLayout(vlayout)
v_widget.setFixedWidth(80)