Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
即使在 QListWidgetItem 添加图标后,该图标也不会出现。以下是我为拥有一个带有图标的项目所做的事情。
item = QtGui.QListWidgetItem(QtGui.QIcon("filename"), "text") listWidget.addItem(item)
item = QtGui.QListWidgetItem(QtGui.QIcon("filename"), "text")
listWidget.addItem(item)
图标文件名是正确的(我检查过)。如果有人帮助我,将不胜感激。谢谢
尝试使用 seticon 添加图标,例如:
item = QtGui.QListWidgetItem('text') item.setIcon(QtGui.QIcon('%s/blend.png'%(RESOURCE_PATH)))