will
will

Reputation: 11

How do you add items to the QT QListView

I am creating a mysql reading program and I need to use a QListView with colunms and rows, but I can't work out how.

Upvotes: 1

Views: 2333

Answers (1)

Arnold Spence
Arnold Spence

Reputation: 22272

You will want to use a QTableView if you have columns and rows. There is a very good .PDF chapter from a Qt book that is actually linked from Qt's own help documentation that covers this. You can get it here.

Upvotes: 2

Related Questions