I have created static(PNG) image as tray icon with pyqt.
Did the same with GIF image results in static tray icon. Can it animated in system tray with pyqt?
QtGui.QSystemTrayIcon.__init__(self, parent)
self.setIcon(QtGui.QIcon("Image.gif"))
I have created static(PNG) image as tray icon with pyqt.
Did the same with GIF image results in static tray icon. Can it animated in system tray with pyqt?
QtGui.QSystemTrayIcon.__init__(self, parent)
self.setIcon(QtGui.QIcon("Image.gif"))
Copyright © 2021 Jogjafile Inc.
Use
QMovie
to play the animated gif, and update the tray icon on each new frame event:...
Sorry for the C++ example, I don't have PyQt installed.