我怎么知道 QTreeView 是空的?
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以循环遍历所有项目并使用 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?