All Tags »
AutoCreateColum... »
Columns »
DataGridCollectionView (RSS)
Sorry, but there are no more tags available to filter with.
-
1- you can do it this way://if starting from a DataTable reference.myDataGridControl.ItemsSource = new DataGridCollectionView( myDataTable.DefaultView );//directly from a DataViewmyDataGridControl.ItemsSource = new DataGridCollectionView( myDataView );2- You can specify to the DataGridControl NOT to create its columns automatically based on ...