我想有一个QMessageBox
,带有一个移动的GIF作为图标。所以我做了这个:
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *
import os
import sys
def msg_wait(s):
msg = QMessageBox()
msg.setIconPixmap(QPixmap('wait.gif').scaledToWidth(100))
msg.setText(s)
msg.setWindowTitle(" ")
msg.setModal(False)
# msg.setStandardButtons(QMessageBox.Ok)
msg.show()
return msg
class SurfViewer(QMainWindow):
def __init__(self, parent=None):
super(SurfViewer, self).__init__()
self.parent = parent
self.centralWidget = QWidget()
self.setCentralWidget(self.centralWidget)
self.msg=msg_wait('blablabla')
self.msg.setStandardButtons(QMessageBox.Cancel)
def main():
app = QApplication(sys.argv)
ex = SurfViewer(app)
ex.setWindowTitle('NMM Stimulator')
ex.showMaximized()
ex.show()
# ex.move(0, 0)
# ex.resizescreen()
sys.exit(app.exec_( ))
if __name__ == '__main__':
main()
GIF在哪里:
但是结果是固定的图像。
如何制作动画?
我尝试使用
QMovie
类进行某些操作,但是无法在QMessageBox.setIconPixmap
函数中进行设置 最佳答案
必须使用QMovie
,但是首先要直接访问QLabel
,请使用findChild
:
def msg_wait(s):
msg = QMessageBox()
# create Label
msg.setIconPixmap(QPixmap('wait.gif').scaledToWidth(100))
icon_label = msg.findChild(QLabel, "qt_msgboxex_icon_label")
movie = QMovie('wait.gif')
# avoid garbage collector
setattr(msg, 'icon_label', movie)
icon_label.setMovie(movie)
movie.start()
msg.setText(s)
msg.setWindowTitle(" ")
msg.setModal(False)
# msg.setStandardButtons(QMessageBox.Ok)
msg.show()
return msg
关于python - 如何在QMessageBox中集成动画GIF?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50023853/