BindingSource.CurrentChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the currently bound item changes.
public:
event EventHandler ^ CurrentChanged;
public event EventHandler CurrentChanged;
public event EventHandler? CurrentChanged;
member this.CurrentChanged : EventHandler
Public Custom Event CurrentChanged As EventHandler
Event Type
Remarks
The CurrentChanged event is raised whenever the Current property changes for any of the following reasons:
The current position of the List changes.
The DataSource or DataMember properties change.
The membership of the underlying List changes, which causes Position to refer to a different item. Examples include adding or deleting an item before the current item, deleting or moving the current item itself, or moving an item to the current position.
The underlying list is refreshed by a new sorting or filtering operation.
When this event is triggered, the Current property will already contain its new value.
CurrentChanged is the default event for the BindingSource class.
For more information about handling events, see Handling and Raising Events.