4 implementations of AllowRemove
System.ComponentModel.TypeConverter (1)
System\ComponentModel\BindingList.cs (1)
383
bool IBindingList.
AllowRemove
=> AllowRemove;
System.Data.Common (2)
System\Data\DataView.cs (1)
944
bool IBindingList.
AllowRemove
=> AllowDelete;
System\Data\DataViewManager.cs (1)
208
bool IBindingList.
AllowRemove
=> false;
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
1670
public virtual bool
AllowRemove
8 references to AllowRemove
PresentationFramework (1)
System\Windows\Data\BindingListCollectionView.cs (1)
876
get { return !IsEditingItem && !IsAddingNew && InternalList.
AllowRemove
; }
System.Windows.Forms (6)
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\BindingNavigator.cs (1)
511
allowRemove = (_bindingSource as IBindingList).
AllowRemove
;
System\Windows\Forms\DataBinding\BindingSource.cs (2)
1015
if (!((IBindingList)this).
AllowRemove
)
1672
get => _state.HasFlag(BindingSourceStates.IsBindingList) ? ((IBindingList)List).
AllowRemove
: !List.IsReadOnly && !List.IsFixedSize;
System\Windows\Forms\DataBinding\CurrencyManager.cs (1)
112
return bindingList.
AllowRemove
;
System.Windows.Forms.Tests (1)
System\Windows\Forms\BindingSourceTests.cs (1)
356
.Setup(p => p.
AllowRemove
)