5 implementations of AllowRemove
System (1)
compmod\system\componentmodel\BindingList.cs (1)
425/* private */ bool IBindingList.AllowRemove {
System.Data (2)
fx\src\data\System\Data\DataView.cs (1)
997bool IBindingList.AllowRemove {
fx\src\data\System\Data\DataViewManager.cs (1)
223bool IBindingList.AllowRemove {
System.Data.Entity (1)
System\Data\Objects\ObjectView.cs (1)
189bool IBindingList.AllowRemove
System.Windows.Forms (1)
winforms\Managed\System\WinForms\BindingSource.cs (1)
1880public virtual bool AllowRemove {
7 references to AllowRemove
PresentationFramework (1)
src\Framework\System\Windows\Data\BindingListCollectionView.cs (1)
883get { return !IsEditingItem && !IsAddingNew && InternalList.AllowRemove; }
System.Windows.Forms (6)
winforms\Managed\System\WinForms\BindingNavigator.cs (1)
519allowRemove = (bindingSource as IBindingList).AllowRemove;
winforms\Managed\System\WinForms\BindingSource.cs (2)
1167if (!(this as IBindingList).AllowRemove) { 1883return ((IBindingList) List).AllowRemove;
winforms\Managed\System\WinForms\CurrencyManager.cs (1)
133return ((IBindingList)list).AllowRemove;
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (2)
940if (list != null && list.AllowRemove && list.SupportsChangeNotification) 2309if (list != null && list.AllowRemove && list.SupportsChangeNotification)