Need some updated examples on how to use QListView

Does anyone have links to tutorials showing how to use QListView and how to populate it with elements.? If I search google, I can find outdated tutorials that use classes that are deprecated.

+4
source share
1 answer

Usually I just read the qt documentation, since it is very good, and provides the necessary information for working with a specific class (this, in my opinion, is one of the best documented frameworks), try and read the documentation to view the list http: //doc.qt .io / qt-5 / qlistview.html , and also see the examples given in qt in the examples directory, where you will find more than one that uses qlistview.

+2
source

Source: https://habr.com/ru/post/1314681/


All Articles