I'm trying to display the content of a datatable in my wpf datagrid
In the following post:
Why can't I bind the WPFToolkit DataGrid ItemSource to DataTable?
I found the code:
myDataGrid.ItemsSource = myDataTable.DefaultView;
and the behaviour is strange: it shows n empty rows where the n is correct: the query results n rows!
So why can't I see them?