如何自定义QListView的显示
我使用 Qt
的模型/视图原理在我的 Qt
程序中实现了用户列表。我的 QListView 显示 QAbstractListModel 的子类,到目前为止效果很好。
现在我想自定义用户列表的显示(在几行上显示名称,添加 IP 信息等:不是真正相关,我只是想要真正自定义的东西)。
我在 Qt
文档中找不到与此相关的任何内容:我的选择是什么?
注意:如果有帮助的话,列表中的项目不需要(不能)修改。
谢谢。
I have implemented a list of users in my Qt
program, using the model/view principle of Qt
. My QListView
displays a subclass of QAbstractListModel
and so far this works just fine.
Now I would like to customize the display of my user list (display the name on several line, add IP information, and so on: not really relevant, I just want something really custom).
I couldn't find anything in the Qt
documentation regarding this: what are my options ?
Note: The items in the list do not need to (can't) be modified, if this can help.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建一个新的 item delegate 类来处理绘画。 这里是类似问题的一个很好的答案。
You need to create a new item delegate class to handle the painting. Here is a good answer to a similar question.