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