我怎么知道 QTreeView 是空的?

发布于 2024-08-31 11:41:29 字数 201 浏览 2 评论 0原文

我使用 QTreeView 和 QDirModel 来列出目录的内容。当用户选择一个项目(或一行)时,我将使用以下方法将其从树视图中删除

setRowHidden(self, int, QModelIndex, 布尔)

我怎么知道树视图是空的还是所有行都被隐藏了?行数和列数似乎没有帮助..谢谢

I'm using QTreeView with QDirModel to list the contents of a directory.. When a user selects an item(or a row) i'm removing it from the tree view using the below method

setRowHidden (self, int, QModelIndex,
bool)

How can i know that the tree view is empty or all rows are hidden?? Rowcount and Columncount doesn't seem to help.. Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

遮了一弯 2024-09-07 11:41:29

您可以循环遍历所有项目并使用 QTreView.isRowHidden(int, QModelIndex) 检查它们是否被隐藏。

这是唯一的方法。但为什么要隐藏行而不是删除它们呢?

You can loop through all items and check if them are hidden with QTreView.isRowHidden(int, QModelIndex).

It is the only way. But why do you hide rows instead of removing them?

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