QListView 适合我吗?
我一直很难找到一个 Qt 小部件,它可以让我显示包含列的列表。据我了解,QListView确实显示列表数据,但它不允许程序员添加列表视图标题——事实上,似乎唯一允许显示标题的小部件是QTreeView(坦率地说,它是,工作起来很痛苦)。
Qt 当然必须提供一种简单的方法来显示按列组织的标题和数据,不是吗?
非常感谢! ——丹妮。
I've been having difficulty trying to find a Qt widget that will allow me to display a list with columns. From what I understand, QListView does indeed display list data, but it doesn't allow for programmers to add a list view header -- in fact, it appears the only widget that does allow one to display headers is QTreeView (which, quite frankly, is a pain in the arse to work with).
Qt certainly must offer an easy way to display a header and data organized by columns, no?
Thanks so much!
--Dany.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
QTableView 或 QTableWidget?您可以通过隐藏网格和左侧标题使其看起来更像一个包含列的列表。
What about QTableView or QTableWidget? You can make it look a little more like a list with columns by hiding the grid and the left header.
直接来自 QListView 的文档:
Straight from the QListView's docs: