PyQt5 最简单的hello world
简介
创建一个简单的GUi程序,需要包括下面几个步骤:
- 导入QtWidgets模组
- 创建一个Application
- QWidget用于创建顶层窗口,然后增加一个QLabel
- 设置标签的内容为Hello World
- 设置窗口的尺寸和位置
- 进入主循环
源码
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()
|
效果图
处无为之事,行不言之教;作而弗始,生而弗有,为而弗恃,功成不居!
微信支付
支付宝