Unfortunately dynamic objects like Expando do not work yet with WPF4 in my testing. However, there are other tried and true methods that are available.
For a collection of String[], you can use a DataTable to give you dynamic columns:
var rawData = new string[][]
{
new string[] { "R1F1", "R1F2", },
new string[] { "R2F1", "R2F2", },
};
var fieldNames = Enumerable.Range(1, rawData[0].Length).Select(field => "Field" + field);
var table = new DataTable();
table.Columns.AddRange(fieldNames.Select(fieldName => new DataColumn(fieldName)).ToArray());
foreach (var record in rawData)
{
DataRow row = table.NewRow();
for (int i = 0; i < record.Length; i++)
{
row[i] = record[i];
}
table.Rows.Add(row);
}
DataContext = table;
together with XAML like this:
<Grid>
<DataGrid ItemsSource="{Binding}"/>
</Grid>
results in:
