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