PyQt5启动画面——等待程序启动不用干瞪眼

PyQt的启动画面可以通过QSplashScreen类来快捷制作,支持透明图片

import sys
from PyQt5 import QtWidgets, QtGui

# 对Qt部件的操作一般都要在创建Qt程序后才能进行
app = QtWidgets.QApplication(sys.argv)  

# 创建启动界面,支持png透明图片
splash = QtWidgets.QSplashScreen(QtGui.QPixmap('splash.png'))
splash.show()

# 可以显示启动信息
splash.showMessage('正在加载……')

# 关闭启动画面
splash.close() 

你可能感兴趣的:(PyQt5启动画面——等待程序启动不用干瞪眼)