主页 > 知识库 > pyqt添加启动等待界面的操作

pyqt添加启动等待界面的操作

热门标签:百度AI接口 电话运营中心 呼叫中心市场需求 客户服务 语音系统 硅谷的囚徒呼叫中心 企业做大做强 Win7旗舰版

一、实验环境

1.Windows7x64_SP1

2.anaconda3.7 + python3.7(anaconda集成,不需单独安装)

3.pyinstaller3.5 #使用pyinstaller3.0,打包时报错

二、实验步骤

1.resource.qrc文件中添加图片资源

RCC>
 qresource>
  file alias="contacts.png">ico/contacts.png/file>
  file alias="exit.png">ico/exit.png/file>
  file alias="about.png">ico/about.png/file>
  file alias="config.png">ico/config.png/file>
  file alias="help.png">ico/help.png/file>
  file alias="xel.png">ico/xel.png/file>
  file alias="xel_small.png">ico/xel_small.png/file>
  file alias="magnifier.png">ico/magnifier.png/file>
  file alias="wait.png">ico/wait.png/file>
 /qresource>
/RCC>

2.使用pyrcc5生成最新的resource.py文件,命令参考如下:

pyrcc5 -o resource.py resource.qrc

3.更改程序主文件

# -*- coding: utf-8 -*-
import os,sys,time,re
from PyQt5.QtWidgets import QMainWindow,QMessageBox
from PyQt5.uic import loadUi
from PyQt5.QtWidgets import QApplication,QDialog,QSplashScreen
from PyQt5 import QtCore,QtGui
from untitled import Ui_MainWindow
 
if __name__ == '__main__':
  app = QApplication(sys.argv)
  splash = QSplashScreen(QtGui.QPixmap(":/wait.png"))   # 启动界面图片地址
  splash.show()                      # 展示启动图片
  app.processEvents()                   # 防止进程卡死
  icon = QtGui.QIcon()
  icon.addPixmap(QtGui.QPixmap(":/magnifier.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
  tool = SmartBit_Tool()
  tool.setWindowIcon(icon)
  tool.show()
  splash.finish(tool)                   # 关闭启动界面
  sys.exit(app.exec_())

4.运行结果

运行exe文件发现,从双击exe文件至弹出启动界面图片,还是存在一定的延时!如何缩短这个延时,还需要继续研究,知道的童鞋也请告知!

5.提升运行速度

代码中不用的库,删除其导入语句

尽量使用from xxx import xxx,少用from xxx import *

使用pyinstaller打包文件,打包为一个文件夹

补充: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() 

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

您可能感兴趣的文章:
  • python GUI库图形界面开发之PyQt5窗口控件QWidget详细使用方法
  • python GUI库图形界面开发之PyQt5线程类QThread详细使用方法
  • python GUI库图形界面开发之PyQt5布局控件QVBoxLayout详细使用方法与实例

标签:山西 济南 长沙 喀什 安康 崇左 山西 海南

巨人网络通讯声明:本文标题《pyqt添加启动等待界面的操作》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266