System.Windows.Forms.BindingsCollection.AddCore C# (CSharp) 메소드

AddCore() 보호된 메소드

protected AddCore ( System.Windows.Forms.Binding dataBinding ) : void
dataBinding System.Windows.Forms.Binding
리턴 void
		protected virtual void AddCore (Binding dataBinding) 
		{
			CollectionChangeEventArgs args = new CollectionChangeEventArgs (CollectionChangeAction.Add, dataBinding);

			OnCollectionChanging (args);
			
			base.List.Add(dataBinding);
			OnCollectionChanged (args);
		}