28设置窗口图标

import sys
from PyQt5.QtWidgets import QApplication, QMainWindow
from PyQt5.QtGui import QIcon

class MainWindow(QMainWindow):
def __init__(self, parent=None):
super(MainWindow, self).__init__(parent)
self.initUI()

def initUI(self):
self.setGeometry(300, 300, 250, 250)
# 设置主窗口的标题
self.setWindowTitle('第一个主窗口应用')
# 设置主窗口的尺寸
self.resize(400, 300)

28设置窗口图标最先出现在Python成神之路

版权声明:
作者:玉兰
链接:https://www.techfm.club/p/19923.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>