PySide2/QLayout:无法向 QHBoxLayout 添加空布局
PySide2 / QLayout: Cannot add a null layout to QHBoxLayout
我想用 PySide2 创建一个具有 2 个 QVBoxLayout 作为 child 的 QHBoxLayout。
为了便于阅读,我想将 2 个 QVBoxLayout 分成不同的函数(left_panel 和 right_panel)。
请在下面找到脚本示例
import sys
from PySide2 import QtCore, QtGui
from PySide2.QtWidgets import (QVBoxLayout, QTableWidget, QWidget, QLabel, QLineEdit, QPushButton, QCheckBox,
QTextEdit, QGridLayout, QApplication, QAbstractItemView, QHBoxLayout)
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
mainLayout = QHBoxLayout()
mainLayout.addLayout(self.left_panel())
mainLayout.addLayout(self.right_panel())
self.setLayout(mainLayout)
def right_panel(self):
rightLayout = QVBoxLayout()
self.tableCert = QTableWidget()
self.tableCert.setColumnCount(3)
self.tableCertColumnLabels = ["First Name","Surname","login"]
self.tableCert.setRowCount(2)
self.tableCert.setHorizontalHeaderLabels(self.tableCertColumnLabels)
self.tableCert.verticalHeader().setVisible(False)
self.tableCert.horizontalHeader().setVisible(True)
rightLayout.addWidget(self.tableCert)
def left_panel(self):
pass #Here we will have the content of the other QVBoxLayout
def main():
app = QApplication(sys.argv)
ex = Example()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
问题是当我执行脚本时出现以下错误:
QLayout: Cannot add a null layout to QHBoxLayout
你知道为什么以及我该如何纠正吗?
提前致谢。
问题很简单:right_panel
方法没有 return 任何东西,或者说它 returns None,所以:
mainLayout.addLayout(self.right_panel())
等同于 Y:
mainLayout.addLayout(None)
解决方法是return rightLayout:
def right_panel(self):
rightLayout = QVBoxLayout()
self.tableCert = QTableWidget()
self.tableCert.setColumnCount(3)
self.tableCertColumnLabels = ["First Name", "Surname", "login"]
self.tableCert.setRowCount(2)
self.tableCert.setHorizontalHeaderLabels(self.tableCertColumnLabels)
self.tableCert.verticalHeader().setVisible(False)
self.tableCert.horizontalHeader().setVisible(True)
rightLayout.addWidget(self.tableCert)
<b>return rightLayout</b>
我想用 PySide2 创建一个具有 2 个 QVBoxLayout 作为 child 的 QHBoxLayout。 为了便于阅读,我想将 2 个 QVBoxLayout 分成不同的函数(left_panel 和 right_panel)。
请在下面找到脚本示例
import sys
from PySide2 import QtCore, QtGui
from PySide2.QtWidgets import (QVBoxLayout, QTableWidget, QWidget, QLabel, QLineEdit, QPushButton, QCheckBox,
QTextEdit, QGridLayout, QApplication, QAbstractItemView, QHBoxLayout)
class Example(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
mainLayout = QHBoxLayout()
mainLayout.addLayout(self.left_panel())
mainLayout.addLayout(self.right_panel())
self.setLayout(mainLayout)
def right_panel(self):
rightLayout = QVBoxLayout()
self.tableCert = QTableWidget()
self.tableCert.setColumnCount(3)
self.tableCertColumnLabels = ["First Name","Surname","login"]
self.tableCert.setRowCount(2)
self.tableCert.setHorizontalHeaderLabels(self.tableCertColumnLabels)
self.tableCert.verticalHeader().setVisible(False)
self.tableCert.horizontalHeader().setVisible(True)
rightLayout.addWidget(self.tableCert)
def left_panel(self):
pass #Here we will have the content of the other QVBoxLayout
def main():
app = QApplication(sys.argv)
ex = Example()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
问题是当我执行脚本时出现以下错误:
QLayout: Cannot add a null layout to QHBoxLayout
你知道为什么以及我该如何纠正吗?
提前致谢。
问题很简单:right_panel
方法没有 return 任何东西,或者说它 returns None,所以:
mainLayout.addLayout(self.right_panel())
等同于 Y:
mainLayout.addLayout(None)
解决方法是return rightLayout:
def right_panel(self):
rightLayout = QVBoxLayout()
self.tableCert = QTableWidget()
self.tableCert.setColumnCount(3)
self.tableCertColumnLabels = ["First Name", "Surname", "login"]
self.tableCert.setRowCount(2)
self.tableCert.setHorizontalHeaderLabels(self.tableCertColumnLabels)
self.tableCert.verticalHeader().setVisible(False)
self.tableCert.horizontalHeader().setVisible(True)
rightLayout.addWidget(self.tableCert)
<b>return rightLayout</b>