本文介绍了如何从 QTreeView 中删除列(使用 QDirModel)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 QDirModel 附加到 QTreeView,我只想查看路径,而不是大小、类型和修改日期.
I have a QDirModel attached to a QTreeView and I only want to see the paths, not size, type and date modified.
有没有办法删除这些列?
Is there a way to remove these columns?
推荐答案
QTreeView::setColumnHidden(int column, bool hide)
应该可以解决问题.
这篇关于如何从 QTreeView 中删除列(使用 QDirModel)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!