PyQt5中的“导入的未定义变量:SLOT”?

时间:2018-01-10 04:08:03

标签: python pyqt pyqt5 slot

我正在从答案中尝试以下PyQt5代码 Singleshot: SLOT with arguments

from PyQt5 import QtCore
QtCore.QTimer.singleShot(1, self, QtCore.SLOT(recall(arg1)), arg1)

但我收到有关QtCore.SLOT部分的错误消息:

  

导入时未定义的变量:SLOT

我是PyQt5的新手,我想知道:

这个错误是由于PyQt 4和5之间的版本差异造成的吗?

在PyQt5中编写它的正确方法是什么?

0 个答案:

没有答案