博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在窗口标题栏的左上方显示图标
阅读量:5311 次
发布时间:2019-06-14

本文共 997 字,大约阅读时间需要 3 分钟。

效果如下图:

1 """ 2 This example shows an icon 3 in the titlebar of the window. 4  5 """ 6  7 import sys 8 from PyQt5.QtWidgets import QApplication, QWidget 9 from PyQt5.QtGui import QIcon10 11 12 class Example(QWidget):  # The Example class inherits from the QWidget class13 14     def __init__(self):15         super().__init__()  # The super() method returns the parent object of the Example class16 17         self.initUI()18 19     def initUI(self):20 21         # locates the window on the screen and sets it size22         self.setGeometry(300, 300, 300, 220)23 24         # set the title of the window25         self.setWindowTitle('Hello World')26 27         # sets the application icon28         # The QIcon receives the path to our icon29         self.setWindowIcon(QIcon('web.png'))30 31         self.show()32 33 34 if __name__ == '__main__':35 36     app = QApplication(sys.argv)37     ex = Example()38     sys.exit(app.exec_())

 

 

问题:如何将标题居中?

转载于:https://www.cnblogs.com/fuqia/p/8697257.html

你可能感兴趣的文章
iOS如何过滤掉文本中特殊字符
查看>>
基础学习:C#中float的取值范围和精度
查看>>
MongoDB-CRUD
查看>>
javaagent 简介
查看>>
python升级安装后的yum的修复
查看>>
Vim配置Node.js开发工具
查看>>
web前端面试题2017
查看>>
ELMAH——可插拔错误日志工具
查看>>
MySQL学习笔记(四)
查看>>
【Crash Course Psychology】2. Research & Experimentation笔记
查看>>
两数和
查看>>
移动设备和SharePoint 2013 - 第3部分:推送通知
查看>>
SOPC Builder中SystemID
查看>>
MySQL数据库备份工具mysqldump的使用(转)
查看>>
NTP服务器配置
查看>>
【转】OO无双的blocking/non-blocking执行时刻
查看>>
ul li剧中对齐
查看>>
关于 linux 的 limit 的设置
查看>>
模块搜索路径
查看>>
如何成为一名优秀的程序员?
查看>>