我试图让QGroupBox
滚动一旦高于400px就可滚动。使用for循环生成QGroupBox
中的内容。这是一个如何完成的例子。
mygroupbox = QtGui.QGroupBox('this is my groupbox')
myform = QtGui.QFormLayout()
labellist = []
combolist = []
for i in range(val):
labellist.append(QtGui.QLabel('mylabel'))
combolist.append(QtGui.QComboBox())
myform.addRow(labellist[i],combolist[i])
mygroupbox.setLayout(myform)
由于val
的值取决于其他一些因素,因此无法确定myform
布局大小。为了解决这个问题,我添加了QScrollableArea
这样的内容。
scroll = QtGui.QScrollableArea()
scroll.setWidget(mygroupbox)
scroll.setWidgetResizable(True)
scroll.setFixedHeight(400)
不幸的是,这似乎对组合框没有任何影响。没有滚动条的迹象。我错过了什么吗?
答案 0 :(得分:13)
除了明显的拼写错误(我确定你的意思是QScrollArea
),我发现你发布的内容并没有错。所以问题必须在你的代码的其他地方:可能缺少布局?
为了确保我们在同一页面上,这个最小的脚本按预期工作:
from PyQt4 import QtGui
class Window(QtGui.QWidget):
def __init__(self, val):
QtGui.QWidget.__init__(self)
mygroupbox = QtGui.QGroupBox('this is my groupbox')
myform = QtGui.QFormLayout()
labellist = []
combolist = []
for i in range(val):
labellist.append(QtGui.QLabel('mylabel'))
combolist.append(QtGui.QComboBox())
myform.addRow(labellist[i],combolist[i])
mygroupbox.setLayout(myform)
scroll = QtGui.QScrollArea()
scroll.setWidget(mygroupbox)
scroll.setWidgetResizable(True)
scroll.setFixedHeight(400)
layout = QtGui.QVBoxLayout(self)
layout.addWidget(scroll)
if __name__ == '__main__':
import sys
app = QtGui.QApplication(sys.argv)
window = Window(25)
window.setGeometry(500, 300, 300, 400)
window.show()
sys.exit(app.exec_())