【Python篇】PyQt5 超详细教程——由入门到精通(序篇)
pip install PyQt5
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QLabel
if __name__ == '__main__':
app = QApplication(sys.argv)
window = QWidget()
window.setWindowTitle ('我的第一个PyQt5程序')
label = QLabel('Hello, PyQt5!', parent=window)
label.move(50, 50)
window.show()
sys.exit(app.exec_())
QApplication
: 这是PyQt5应用程序的类,它管理应用程序的主事件循环。QWidget
: 这是所有用户界面对象的基类。QLabel
: 用于显示文本的控件。setWindowTitle
: 设置窗口标题。move
: 设置控件的位置。show
: 显示窗口。保存上述代码为一个Python文件(例如,hello.py
),然后在终端中运行:
python hello.py
在接下来的教程中,我们将深入学习PyQt5的各个方面,包括:
准备好了吗?让我们一起踏上PyQt5的学习之旅吧!
如果你对某个方面特别感兴趣,欢迎留言提问。
想先学习哪个部分呢?
期待你的反馈!