How would I be able to create a marquee effect in a PySide
Label in Python? I have some news headlines in a list and I would like them to scroll across the bottom of the window.
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Django __str__ returned non-string (type NoneType)
- Evil ctypes hack in python
You could create a custom widget but to avoid the task of implementing many methods takes advantage of the
QLabel
class as shown below:The following example can be found in the following link.
Output: