目录
四、在images文件夹中新建文件resources.qrc文件
五、resources.qrc转换成resources_rc.py
一、在项目中新建文件夹images
二、下载资源文件
三、将下载的资源文件放到images文件夹中
四、在images文件夹中新建文件resources.qrc文件
<!--resources.qrc-->
<RCC>
<qresource prefix="icons">
<file>mysql_off.png</file>
<file>mysql_on.png</file>
<file>table.png</file>
<file>code_generator.png</file>
<file>linked.png</file>
<file>delete.png</file>
<file>template.png</file>
<file>add.png</file>
<file>del.png</file>
<file>edit.png</file>
<file>refresh.png</file>
<file>template_edit.png</file>
<file>address.png</file>
</qresource>
</RCC>
五、resources.qrc转换成resources_rc.py
六、使用资源文件
from PySide6.QtGui import QIcon
from PySide6.QtWidgets import QWidget, QApplication
if __name__ == '__main__':
# 引入资源(这一步不能少!)
from images.resources_rc import *
app = QApplication([])
window = QWidget()
window.setWindowIcon(QIcon(':/icons/address.png'))
window.show()
app.exec()