0
在我的應用我已經控制研究類定義如下:Python。連接定製類的QThread
class Controller(QtGui.QWidget, Ui_myUI):
在這個類在按鈕按下的動作我想的QThread的成品()動作連接到所定義的done
方法在Controller
類,如下所示:
def applyAction(self):
self.myTread = MyTestTread()
self.connect(self.myTread, QtCore.SIGNAL("finished()"), self.done)
self.myTread.start()
但這代碼返回follwing錯誤:
AttributeError: 'Controller' object has no attribute 'connect'
我在這裏做錯了什麼?