Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
How to create an grid list UI like the example list view when open QT Generator
-
Like the title, which widget should I choose to implement an grid UI like this?
-
If you look at Qt Creator sourcecode, you can see that this is a custom widget with grid view and custom item delegates
QGridView
is deprecated, I guess, but you can use aQTableWidget
orQListWidget
.