如何自动对 QTreeWidget 列进行排序?
我正在使用 QTreeWidget
来显示一些简单的项目。 我已通过 .setSortingEnabled(true) 调用将列表设置为可排序。 这样,仅当用户按下标题列时,列表才会排序,而不会在插入新项目时自动排序。
有没有办法强制在指定列中自动排序,而无需在每次插入项目时调用 .sortItems(column)
?
如果可能的话,我会突出显示整个排序列。
I'm using a QTreeWidget
to display some simple items. I've set the list sortable by .setSortingEnabled(true)
calling. In this way, the list is sorted only when the user press the title column, and not automatically whenever new item is inserted.
Is there a way to force the automatic sorting in a specified column without calling .sortItems(column)
at every item insertion?
If it's possible, I would highlight the whole sorted column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,请使用 QTreeView::setSortingEnabled() 和 < a href="http://doc.qt.io/qt-4.8/qtreeview.html#sortByColumn" rel="noreferrer">QTreeView::sortByColumn。 只需记住在您最初填充小部件之后/之后打开此功能,并在执行任何批量更新之前/再次关闭它以提高效率。
To do this, use QTreeView::setSortingEnabled() and QTreeView::sortByColumn. Just remember to turn this on /after/ you initially populate the widget, and turn it off again /before/ doing any bulk updates for efficiency.