我使用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'))
答案 0 :(得分:2)
您在邮件QDialog
中有'Wrong base class of toplevel widget', (<class 'controllers.GUI.NewClassWindow'>, 'QDialog'))
,因此我认为您希望使用QDialog
创建第二个窗口,但在QMainWindow
中使用class PopupWindowONE(QMainWindow):
答案 1 :(得分:1)
使用QDialog
时遇到类似的问题,但将其更改为QMainWindow
并有效