标签: python user-interface python-3.x pyqt pyqt4
我需要一个可以使用button.clicked.connect(function)关闭PyQt中当前窗口的命令..“function”应该能够退出当前窗口。我使用了self.close()但它没有工作。 这个网站已被黑了
button.clicked.connect(function)
self.close()
button.clicked.connect(self.function) def function(): #what shall I write here to close this window?