Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
QTreeWidget Vs QtreeView
-
Hi All
I want to know the difference between QTreeWidgetitem and QTreeview and . I want to know When to QTreeView and under what situation we should use QTreeView
-
This post is deleted!
-
Hi,
QTreeWidgetItem is an item you want to add to a QTreeWidget. The difference between QTreeView and QTreeWidget is that the QTreeWidget already has a model.
You should use QTreeView when you want to use your own model like a QFileSystemModel or a custom model.