QTreeView 中的一种文件格式
是否可以设置仅一种用户可见的文件格式? 我正在文档中搜索它,但找不到它...... 如果没有,您建议使用哪个其他小部件?
Is it possible to set only one file format visible to the user?
I'm searching it in documentation, but I can't find it...
If not, which other widget you are suggesting to use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您正在使用 QTreeView 和 QFileSystemModel。如果没有,我建议这样做。 QTreeWidget 没有那么灵活。
QFileSystemModel 有一个名为
setNameFilters
的方法,它应该可以完成您想要的操作。要使用它,请执行以下操作:I assume you're using a QTreeView with a QFileSystemModel. If not, I'd suggest doing so. QTreeWidget is not as flexible.
QFileSystemModel has a method called
setNameFilters
that should do what you want. To use it, do something like this: