编程语言
首页 > 编程语言> > python-__init __()中的PyQt self.close()

python-__init __()中的PyQt self.close()

作者:互联网

Python 2.7下使用PyQt4时遇到一些小问题

我正在写一个小项目,其中一些QDialogs相互打开.
因此,我打开了一个对话框,然后立即打开了另一个对话框以检查某些内容,当出现错误检查时,我希望整个对话框关闭.它看起来像这样:

class MyDialog(QtGui.QDialog):
    def __init__(self):
        ## should get me a 10 digit number input
        text, ok = QtGui.QInputDialog.getText(self, u'Enter check')
    if ok:
        ## if clicked ok, assign tID
        tID = text
    else:
        ## else close
        self.close()

    try:   
        ## checker is a plausibilty check for the input
        ## checks, if tID is a number and 10 digits long
        ## and throws an IntegrityWarning if one of these conditions
        ## is not met         
        tID = self.checker.checkID(tID)
    except IntegrityWarning as e:
        ## on exception show error dialog
        errDialog = QtGui.QMessageBox()
        errDialog.setWindowTitle(u'Fehler')
        errDialog.setText(e.getWarning())
        ok = errDialog.exec_()
        if ok != True:
            ## close the whole dialog if user cancels
            self.close()

    self.tAccount = self.tControl.getAccount(tID)

所以这基本上是我要做的,并且工作正常,只是我在分配之前得到了使用tID的错误消息.之后,我的Programm可以正常工作,但我想知道错误是从哪里来的.令我感到奇怪的是,即使我将tAccount的最后一次分配放入try-except:pass语句中,该错误也会被抛出到控制台,而不是通过,这显然是事实.所以我的猜测是我不能简单地终止__init __()例程中的程序.我尝试了一个return语句,而不是close()语句,并销毁了MainWindow调用程序函数中的QDialog.这使得该对话框出现并保持空白,因为它是模态的,我不得不关闭它才能在MainWindow中继续.

有人可以告诉我为什么对话框__init __()在关闭后恢复吗?

解决方法:

这是Python的正常行为. self.close()不是return语句,因此它不会从__init__退出.

此外,__ init__实际上不会在屏幕上显示对话框,因此在__init__中编写self.close()是没有意义的.我建议重新组织代码,以便此应用程序逻辑不在__init__之外,并将根据QInputDialog和checker的结果决定是否初始化并显示MyDialog.

标签:qdialog,python,init,pyqt
来源: https://codeday.me/bug/20191010/1885717.html