def __init__(self, parent):
super(LCAResultsTab, self).__init__(parent)
self.panel = parent # e.g. right panel
self.visible = False
self.scroll_area = QtWidgets.QScrollArea()
self.scroll_widget = QtWidgets.QWidget()
self.scroll_widget_layout = QtWidgets.QVBoxLayout()
self.scroll_widget.setLayout(self.scroll_widget_layout)
self.scroll_area.setWidget(self.scroll_widget)
self.scroll_area.setWidgetResizable(True)
self.layout = QtWidgets.QVBoxLayout()
self.setLayout(self.layout)
self.connect_signals()
lca_results.py 文件源码
python
阅读 26
收藏 0
点赞 0
评论 0
评论列表
文章目录