我正在关注Tech With Tim在PyQt5上的教程 Video Link
我正在为此使用PyCharm。这是我当前的代码
from PyQt5 import QtWidgets
from PyQt5.QtWidgets import QApplication, QMainWindow
import sys
class MyWindow(QMainWindow):
def __init__(self):
super(MyWindow, self).__init__()
self.setGeometry(200, 200, 500, 500)
self.setWindowTitle("Data")
self.initUI()
def initUI(self):
self.label1 = QtWidgets.QLabel(self)
self.label1.setText("Hello World")
self.label1.move(225, 250)
self.button1 =QtWidgets.QPushButton(self)
self.button1.setText("Click Me")
self.button1.move(200, 200)
self.button1.clicked.connect(self.pressed())
def pressed(self):
self.label1.setText("You Clicked")
def window():
app = QApplication(sys.argv)
win = MyWindow()
win.show()
sys.exit(app.exec_())
window()
我遇到一个问题,说“在'功能'中找不到引用'连接'” 当然,我首先尝试搜索google,但它们围绕PyQt4展开,我认为这无法解决我的问题。