PyQt5:TypeError:'顶级窗口小部件错误的基类'

时间:2016-11-25 23:26:54

标签: python python-3.x pyqt pyqt5

我使用QtDesigner创建了.ui文件,然后将它们加载到两个单独的窗口中,如下所示

class MainWindow(QMainWindow):
    def __init__(self, parent=None):
        super().__init__()

        # Set up the user interface from Designer.
        uic.loadUi("interface/UI/main.ui", self)

        # Connect up the buttons
        self.button_classes.clicked.connect(self.open_classes)

        self.w = []

    def open_classes(self):
        self.w.append(PopupWindow(self))
        self.w[-1].show()


class PopupWindow(QMainWindow):
    def __init__(self, parent=None):
        super().__init__()

        # Set up the user interface from Designer.
        uic.loadUi("interface/UI/newclass.ui", self)

当我在调试模式下运行PyCharm中的代码时,会发生以下错误,但是当代码正常运行时不会发生这种情况

TypeError: ('Wrong base class of toplevel widget', (<class 'controllers.GUI.PopupWindow'>, 'QDialog'))

2 个答案:

答案 0 :(得分:2)

您在邮件QDialog中有'Wrong base class of toplevel widget', (<class 'controllers.GUI.NewClassWindow'>, 'QDialog')),因此我认为您希望使用QDialog创建第二个窗口,但在QMainWindow中使用class PopupWindowONE(QMainWindow):

答案 1 :(得分:1)

使用QDialog时遇到类似的问题,但将其更改为QMainWindow并有效