import sys
from PyQt5.QtWidgets import QApplication, QWidget
from PyQt5.QtGui import QIcon, QPixmap
from PyQt5.QtCore import QFile
# 面向对象编程
class main_widget(QWidget): # 继承自 QWidget类
def __init__(self):
super().__init__()
self.initUI() # 创建窗口
def initUI(self): # 在此处添加 窗口控件
self.setGeometry(300, 200, 600, 500) # 屏幕上坐标(x, y), 和 窗口大小(宽,高)
self.setWindowTitle("第一个qt5窗口")
# self.setWindowIcon(QIcon("logo/m4.png")) # 设置窗口图标
self.show()
if __name__ == "__main__":
app = QApplication(sys.argv)
path = 'logo/m4.png'
print(QFile.exists(path))
app.setWindowIcon(QIcon(path)) # MAC 下 程序图标是显示在程序坞中的, 切记;
window = main_widget()
sys.exit(app.exec()) # 退出主循环