Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Need some updated examples on how to use QListView [closed]

Tags:

c++

qt

Does anyone have any links to tutorials showing how to use QListView and how to populate it with items .. ? If I search google I can only find outdated tutorials which use classes which have been deprecated ..

like image 742
Ahmad Avatar asked Nov 15 '22 09:11

Ahmad


1 Answers

I usually just read the qt documentation as it is very good and provides the necessary information to work with a specific class (it is one of the best documented frameworks in my opinion) try and read the documentation for list view http://doc.qt.io/qt-5/qlistview.html and also look at the examples provided with qt in the examples directory you should find more than one which uses qlistview.

like image 101
Olorin Avatar answered Dec 26 '22 09:12

Olorin