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

RemoveCore() 보호된 메소드

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

			OnCollectionChanging (args);

			base.List.Remove(dataBinding);
			OnCollectionChanged (args);
		}