91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

pyqt怎么添加啟動等待界面的操作

發布時間:2021-03-17 14:11:40 來源:億速云 閱讀:812 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關pyqt怎么添加啟動等待界面的操作的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

一、實驗環境

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()

感謝各位的閱讀!關于“pyqt怎么添加啟動等待界面的操作”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

察隅县| 开化县| 德惠市| 曲阜市| 荔波县| 定陶县| 洮南市| 福鼎市| 高雄市| 罗定市| 油尖旺区| 龙山县| 勃利县| 广元市| 句容市| 子洲县| 遵化市| 焦作市| 车致| 泰宁县| 田阳县| 广昌县| 惠东县| 祁东县| 政和县| 泉州市| 新民市| 沅陵县| 崇左市| 光山县| 满城县| 延边| 晴隆县| 平远县| 泰州市| 穆棱市| 同德县| 分宜县| 罗城| 周宁县| 库尔勒市|