views:

23

answers:

1

In WPF, I am using the DataGrid from WPF toolkit.Can anyone tell me how can i empty the data in the datagrid in codebehind ?

+1  A: 

You can set/reset the "ItemsSource" of the datagrid.

VoodooChild