Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to set the form icon by pyqt5 in Python

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

In this issue, the editor will bring you about how to set the form icon in pyqt5 in Python. The article is rich in content and analyzes and narrates it from a professional point of view. I hope you can get something after reading this article.

1. Python pure code writing GUI

The simplest code

App=QApplication (sys.argv)

W=QWidget ()

W.show ()

App.exec_ ()

2. Pyqt5 sets the form icon

Use the function setWindowIcon function.

Setting the icon requires the import from PyQt5.QtGui import Qicon of the class library

Initialize the Qicon class with the constructor, passing in the path of the icon, and it is recommended to set the relative path.

Question: where can I download the icon?

Alibaba icon library

Https://www.iconfont.cn

Note: the download icon should be png or gif as much as possible, which makes the background of the image transparent.

In a project, we tend to put all the icons in the same folder and then call them through the relative path.

Question: what is the difference between setting icons in QWidget and setting icons in QApplication?

The icon of a form set through Qwidget's setWindowIcon can be one icon per form.

The icon of the form is set through QAapplication's setWindowIcon, and the default icon of all forms is set.

Note: only icons set by QApplication can be recognized in mac systems.

III. Summary and emphasis

1. Master basic pyqt5 pure code writing gui

two。 Set the icon for the form

3. Understand the difference between qapplication and qwidget setting icons

The above is the editor for you to share the Python pyqt5 how to set the form icon, if you happen to have similar doubts, you might as well refer to the above analysis to understand. If you want to know more about it, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report