from PyQt6.QtWidgets import QApplication, QWidget, QLabel
from PyQt6.QtGui import QIcon, QFont, QPixmap, QMovie
import sys
class Window(QWidget):
def __init__(self):
super().__init__()
self.setGeometry(200, 200, 700, 400) # 设置窗口大小
self.setWindowTitle("Python GUI Development")
self.setWindowIcon(QIcon('images/python.png')) # 设置图片,没有的话不显示
# label = QLabel("Python GUI Development", self)
# label.setText("New Text is Here") # 设置文本
# label.move(100, 100) # 移动
# label.setFont(QFont("Sanserif", 15)) # 设置字体
# label.setStyleSheet('color: red') # 设置字体颜色
#
# label.setText(str(12))
# label.setNum(15)
# label.clear()
# label = QLabel(self)
# pixmap = QPixmap('images/python.png') # 创建一个pixmap对象,绑定图片地址
# label.setPixmap(pixmap) # 显示图片在label上
label = QLabel(self)
movie = QPixmap('images/sky.gif') # 创建一个movie对象,绑定图片地址
movie.setSpeed(500) # 设置播放速度
label.setPixmap(movie) # 显示图片在label上
movie.start()
app = QApplication(sys.argv)
window = Window()
window.show()
sys.exit(app.exec())