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