I have a Datagrid, on start up I set its set of columns then I bind it to a List> in order to fill it with data. Each nested list has the same number of items as the number of columns I got, but... I don't get nothing shown... What's the correct practice to bind a 2D collection to a DataGrid ?
Code Sample
List<List<String>> rows = SomeFunctionThatReturnsTheRows();
this.grid.ItemsSource = rows;
Thank you, Miloud B.