PyQt self.close() 变成 __init__()
PyQt self.close() in __init__()
我在 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 的错误消息。在那之后我的程序工作得很好,但我想知道错误是从哪里来的。但令我感到好奇的是,即使我将 tAccount 的最后一个赋值放入 try-except: pass 语句中,错误也会被抛出到控制台,而不是传递给控制台,这显然应该是这样。所以我的猜测是我不能简单地终止 __init__()
例程中的程序。我尝试了 return 语句而不是 close() 语句,并在 MainWindow 中的调用函数中销毁了 QDialog。这使得对话框出现并保持为空,因为它是模态的,我必须关闭它才能在主窗口中恢复。
谁能告诉我为什么对话框 __init__()
在关闭后恢复?
这是 Python 的正常行为。 self.close()
不是 return 语句,因此它不会从 __init__
.
退出
此外,__init__
实际上并没有在屏幕上显示对话框,所以在__init__
中写self.close()
是没有意义的。我建议重组您的代码,使此应用程序逻辑在 __init__
之外,并将根据 QInputDialog
和 checker
的结果决定是否初始化和显示 MyDialog
我在 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 的错误消息。在那之后我的程序工作得很好,但我想知道错误是从哪里来的。但令我感到好奇的是,即使我将 tAccount 的最后一个赋值放入 try-except: pass 语句中,错误也会被抛出到控制台,而不是传递给控制台,这显然应该是这样。所以我的猜测是我不能简单地终止 __init__()
例程中的程序。我尝试了 return 语句而不是 close() 语句,并在 MainWindow 中的调用函数中销毁了 QDialog。这使得对话框出现并保持为空,因为它是模态的,我必须关闭它才能在主窗口中恢复。
谁能告诉我为什么对话框 __init__()
在关闭后恢复?
这是 Python 的正常行为。 self.close()
不是 return 语句,因此它不会从 __init__
.
此外,__init__
实际上并没有在屏幕上显示对话框,所以在__init__
中写self.close()
是没有意义的。我建议重组您的代码,使此应用程序逻辑在 __init__
之外,并将根据 QInputDialog
和 checker
的结果决定是否初始化和显示 MyDialog