4 implementations of SupportsChangeNotification
System.ComponentModel.TypeConverter (1)
System\ComponentModel\BindingList.cs (1)
385bool IBindingList.SupportsChangeNotification => SupportsChangeNotificationCore;
System.Data.Common (2)
System\Data\DataView.cs (1)
946bool IBindingList.SupportsChangeNotification => true;
System\Data\DataViewManager.cs (1)
210bool IBindingList.SupportsChangeNotification => true;
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
1676public virtual bool SupportsChangeNotification => true;
11 references to SupportsChangeNotification
PresentationFramework (4)
System\Windows\Data\BindingListCollectionView.cs (2)
191if (InternalList != null && InternalList.SupportsChangeNotification) 1888if (InternalList.SupportsChangeNotification)
System\Windows\Data\CollectionView.cs (2)
107((ibl = collection as IBindingList) != null && !ibl.SupportsChangeNotification)) 682((ibl = _sourceCollection as IBindingList) != null && !ibl.SupportsChangeNotification))
System.Windows.Forms (6)
System\Windows\Forms\Controls\DataGridView\DataGridView.DataConnection.cs (2)
88return CurrencyManager is { List: IBindingList { SupportsChangeNotification: true }, AllowAdd: true }; 99return CurrencyManager is { AllowRemove: true, List: IBindingList { SupportsChangeNotification: true } };
System\Windows\Forms\Controls\DataGridView\DataGridViewRowCollection.cs (2)
794if (DataGridView.DataConnection!.List is IBindingList list && list.AllowRemove && list.SupportsChangeNotification) 2192if (DataGridView.DataConnection!.List is IBindingList bindingList && bindingList.AllowRemove && bindingList.SupportsChangeNotification)
System\Windows\Forms\DataBinding\CurrencyManager.cs (2)
999if (list is IBindingList bindingList && bindingList.SupportsChangeNotification) 1077if (list is IBindingList bindingList && bindingList.SupportsChangeNotification)
System.Windows.Forms.Tests (1)
System\Windows\Forms\BindingSourceTests.cs (1)
380.Setup(p => p.SupportsChangeNotification)