如何自动对 QTreeWidget 列进行排序?

发布于 2024-07-10 14:51:20 字数 235 浏览 7 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

惯饮孤独 2024-07-17 14:51:20

为此,请使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文