I have single ObjectListview which should show different models while user is switching some controls. So using Form designer is not an option to set headers/columns. I need to switch them dynamically.
I know I can do it using AllColumns
described here, delete and add again. But my question is can I do it through some object, just like I feed data to the list view? Then I would have different columns object alongside with data object and would switch them together.
If you look in the cookbook then Number 29 is probably what you are after. http://objectlistview.sourceforge.net/cs/recipes.html#can-i-generate-the-whole-objectlistview-directly-from-my-model
(Below is taken from this source).
There is a
Generator
class, to which you can pass your model and it will automatically create the columns based on the public properties.You can even enhance your model by using
OLVColumn
attributes.