I have found that datagrid columns can be dynamically created and bound in Silverlight. However I can't find a way to bind data to those columns.
If I try to bind any type of object with AutoGenerateColumns = true, then the names of each property of the object get added as columns and the object information is displayed in the grid in addition to the existing columns which show no data.
If I apply a list with AutoGenerateColumns = false, then i still get rows to show up in the table but no data in the columns.
I do not want to create a specific object for each case that i need to display data in the datagird.
I do not want to have my column names limited to the names of properties, e.g. names with out spaces.
I want to be able to bind a list or a dictionary array to the data grid. I also want to be able to control what data shows up in what columns.