Hello everybody,
Its not possible to define The ListView columns in the designer like in QT3?
For example column1 = name, column2 = surname...
Combobox allow me to define items...and what about listview columns?
Printable View
Hello everybody,
Its not possible to define The ListView columns in the designer like in QT3?
For example column1 = name, column2 = surname...
Combobox allow me to define items...and what about listview columns?
QListView and QListWidget can have only one column (like QListBox in Qt3). Use QTreeWidget instead.
And remember that views operate on models, thus defining columns for them makes no sense, as they are taken from the model.