5 implementations of SupportsChangeNotification
System (1)
compmod\system\componentmodel\BindingList.cs (1)
431bool IBindingList.SupportsChangeNotification {
System.Data (2)
fx\src\data\System\Data\DataView.cs (1)
1001bool IBindingList.SupportsChangeNotification {
fx\src\data\System\Data\DataViewManager.cs (1)
229bool IBindingList.SupportsChangeNotification {
System.Data.Entity (1)
System\Data\Objects\ObjectView.cs (1)
194bool IBindingList.SupportsChangeNotification
System.Windows.Forms (1)
winforms\Managed\System\WinForms\BindingSource.cs (1)
1892public virtual bool SupportsChangeNotification {
12 references to SupportsChangeNotification
PresentationFramework (4)
src\Framework\System\Windows\Data\BindingListCollectionView.cs (2)
198if (InternalList != null && InternalList.SupportsChangeNotification) 1895if (InternalList.SupportsChangeNotification)
src\Framework\System\Windows\Data\CollectionView.cs (2)
114((ibl = collection as IBindingList) != null && !ibl.SupportsChangeNotification)) 691((ibl = _sourceCollection as IBindingList) != null && !ibl.SupportsChangeNotification))
System.Windows.Forms (8)
winforms\Managed\System\WinForms\CurrencyManager.cs (2)
943if ((list is IBindingList) && ((IBindingList)list).SupportsChangeNotification) { 1006if ((list is IBindingList) && ((IBindingList)list).SupportsChangeNotification) {
winforms\Managed\System\WinForms\DataGrid.cs (2)
9508AllowAdd= listManager.AllowAdd && !gridReadOnly && bl != null && bl.SupportsChangeNotification; 9510AllowRemove = listManager.AllowRemove && !gridReadOnly && bl != null && bl.SupportsChangeNotification; // bug 86061
winforms\Managed\System\WinForms\DataGridViewDataConnection.cs (2)
97return (this.currencyManager.List is IBindingList) && this.currencyManager.AllowAdd && ((IBindingList)this.currencyManager.List).SupportsChangeNotification; 128return (this.currencyManager.List is IBindingList) && this.currencyManager.AllowRemove && ((IBindingList)this.currencyManager.List).SupportsChangeNotification;
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (2)
940if (list != null && list.AllowRemove && list.SupportsChangeNotification) 2309if (list != null && list.AllowRemove && list.SupportsChangeNotification)