所以我有一個close()方法,當用戶單擊關閉按鈕時被調用。 close方法如下:其他類呼叫模塊
def close(self):
ThreadedClient.endApplication()
root.destroy()
close()方法在GUI()類中。 close方法需要調用ThreadedClient類中的endApplication()方法。但相反,它給了我這個錯誤:
TypeError: unbound method endApplication() must be called with ThreadedClient instance as first argument (got nothing instead)
這可能是一個簡單的解決方案,但我只是不知道如何解決它。任何幫助表示讚賞!
這是使用Tkinter的? –