WPF datagrid 添加列表集合改变事件

 只需要给dataGird对象添加INotifyCollectionChanged即可

DataGrid myGrid = new DataGrid();
CollectionView myCollectionView = (CollectionView)CollectionViewSource.GetDefaultView(myGrid.Items);
((INotifyCollectionChanged)myCollectionView).CollectionChanged += new NotifyCollectionChangedEventHandler(DataGrid_CollectionChanged);

你可能感兴趣的:(wpf,c#)