pyqt的QLineEdit控件setStyleSheet样式image添加resources.py的图片
时间: 2024-05-05 21:19:50 浏览: 173
PyQt5基本窗口控件—–QLineEdit
5星 · 资源好评率100%
可以使用以下代码将 resources.py 中的图片添加到 QLineEdit 控件的样式表中:
```python
from PyQt5.QtGui import QPixmap
# 加载图片
pixmap = QPixmap(":/image/image_name.png")
# 将图片添加到样式表中
line_edit.setStyleSheet(f"background-image: url({pixmap.toImage()}); background-repeat: no-repeat; background-position: center;")
```
其中,image_name.png 是 resources.py 中的图片文件名。需要注意的是,样式表中的图片路径需要使用 `:/` 前缀,表示从资源文件中加载。
阅读全文