How to create an grid list UI like the example list view when open QT Generator
Unsolved
General and Desktop
-
wrote on 3 Mar 2020, 11:01 last edited by
-
wrote on 3 Mar 2020, 11:23 last edited by
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
.
1/2