4 implementations of AllowNew
System.ComponentModel.TypeConverter (1)
System\ComponentModel\BindingList.cs (1)
353bool IBindingList.AllowNew => AllowNew;
System.Data.Common (2)
System\Data\DataView.cs (1)
941bool IBindingList.AllowNew => AllowNew;
System\Data\DataViewManager.cs (1)
200bool IBindingList.AllowNew => false;
System.Windows.Forms (1)
System\Windows\Forms\DataBinding\BindingSource.cs (1)
1641public virtual bool AllowNew
5 references to AllowNew
PresentationFramework (1)
System\Windows\Data\BindingListCollectionView.cs (1)
554get { return !IsEditingItem && InternalList.AllowNew; }
System.Windows.Forms (3)
System\Windows\Forms\DataBinding\BindingNavigator.cs (1)
510allowNew = (_bindingSource as IBindingList).AllowNew;
System\Windows\Forms\DataBinding\BindingSource.cs (1)
122return ((IBindingList)List).AllowNew;
System\Windows\Forms\DataBinding\CurrencyManager.cs (1)
69return bindingList.AllowNew;
System.Windows.Forms.Tests (1)
System\Windows\Forms\BindingSourceTests.cs (1)
353.Setup(p => p.AllowNew)