[RESOLVED]Is there QListBox class in Qt library?
-
I'm trying to find some widget to display a list of items as simple as MFC CListBox in Qt GUI library, and I found some examples of using QListBox in the internet, but this class does not exist in my Qt installation. QListView, which is just likes MFC CListView, is not what I need. Any one can tell me how to display a list box using Qt? Thanks!
-
QListWidget
http://doc.qt.digia.com/qt/qlistwidget.htmlBut using a QListView with a suitable model is the more elegant solution most of the time :-)