0%

PyQt5 教程

PyQt5 最简单的hello world

简介

创建一个简单的GUi程序,需要包括下面几个步骤:

  1. 导入QtWidgets模组
  2. 创建一个Application
  3. QWidget用于创建顶层窗口,然后增加一个QLabel
  4. 设置标签的内容为Hello World
  5. 设置窗口的尺寸和位置
  6. 进入主循环

源码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import sys
from PyQt5 import QtGui, QtWidgets

def window():
app = QtWidgets.QApplication(sys.argv)
w = QtWidgets.QWidget()
b = QtWidgets.QLabel(w)
b.setText("Hello World")
w.setGeometry(100,100,200,50)
b.move(50,20)
w.setWindowTitle("PyQt HelloWorld")
w.show()
sys.exit(app.exec_())


if __name__ == '__main__':
window()

效果图

处无为之事,行不言之教;作而弗始,生而弗有,为而弗恃,功成不居!

欢迎关注我的其它发布渠道