I am binding a DataGrid to a DataSet on my ViewModel.
I would like to switch to a more light weight control such as ListView.GridView, but it doesn't appear it supports dynamic column generation.
Since this is a MVVM model, i am trying to avoid having to loop through my dataset columns, and add each GridViewColumn from a codebehind.
is it possible to 1. Bind ad a Listview to a DataSet w/out setting columns explicitly, or 2. Bind the Columns collection to a property on the ViewModel.
If not, what are some other free grid controls that would allow this and outperform DataGrid?