Represents the method that will handle the System.Windows.Forms.BindingSource.AddingNew event.
- sender
- Documentation for this section has not yet been entered.
- e
- Documentation for this section has not yet been entered.
The System.Windows.Forms.BindingSource.AddingNew event occurs prior to adding a new item to a collection, typically in data-binding scenarios. The handler of this event can supply the new item to be added, overriding the standard action of the collection class. This is accomplished by setting the AddingNewEventArgs.NewObject property of the System.ComponentModel.AddingNewEventArgs parameter e to this new item. Typically this item must be of a type expected by the recipient collection, or the collection will throw an exception of type InvalidCastException.
This event is commonly used in data-binding scenarios, within classes such as System.Windows.Forms.BindingSource and System.ComponentModel.BindingList`1.
When you create an System.ComponentModel.AddingNewEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event-handler delegates, see Events and Delegates.