通过带有滚动区域的QHBoxLayoutSize调整QLabel大小

时间:2019-03-28 08:05:32

标签: python pyqt

我无法根据QHBoxLayout大小来调整我的QLabel大小。

我有

我想要

以下代码创建滚动面板:

def __get_camera_scroll_area(self):
    scroll_area = QScrollArea()
    camera_widget = QWidget()
    camera_layout = QHBoxLayout(camera_widget)
    for i in range(40):
        image_label = QLabel()
        image = QImage("test2.jpg")
        image_label.setPixmap(QPixmap.fromImage(image))
        camera_layout.addWidget(image_label)

    scroll_area.setWidget(camera_widget)

    return scroll_area

0 个答案:

没有答案