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.
我有一个QListWidget由不同项目填充的。每个项目都由图标装饰。
QListWidget
是否可以更改特定项目的图标宽度?
您可能希望将 QListView 与您的自定义模型(继承自 QAbstractListModel)一起使用,其中在模型类的 data() 方法中,您为 Qt::Decoration 角色返回相应的图标(可以是任意大小)。