I have a dynamic set of columns and when I populate the rows and know only the columnname of the rows. Is that possible to do?
A list of columns:
Columns[0] = "firstcol";
Columns[12] = "anothercol";
And a list of rows.
First row
Rows[0][0] = "item";
Rows[0][12] = "item";
Second row
Rows[1][0] = "item";
Rows[1][12] = "item";
I need to populate the datagrid. Can that be done, with a dictionary or something, as I do not know the columns...