Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
self.MovieLabel = QLabel() movie = QMovie('C:/Users/Kaan/Desktop/Tasarımlar/Mary/animasyon_mary/wait.gif') self.MovieLabel.setMovie(movie) movie.start()
如何使用 QLabel 调整 QMovie 的大小?
您必须启用 QLabel 的 scaledContents 属性:
self.MovieLabel.setScaledContents(True)