ListView.OnItemSelectionChanged(ListViewItemSelectionChangedEventArgs) Method

Definition

Raises the ItemSelectionChanged event.

protected:
 virtual void OnItemSelectionChanged(System::Windows::Forms::ListViewItemSelectionChangedEventArgs ^ e);
protected virtual void OnItemSelectionChanged (System.Windows.Forms.ListViewItemSelectionChangedEventArgs e);
abstract member OnItemSelectionChanged : System.Windows.Forms.ListViewItemSelectionChangedEventArgs -> unit
override this.OnItemSelectionChanged : System.Windows.Forms.ListViewItemSelectionChangedEventArgs -> unit
Protected Overridable Sub OnItemSelectionChanged (e As ListViewItemSelectionChangedEventArgs)

Parameters

Remarks

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnItemSelectionChanged method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors

When overriding OnItemSelectionChanged(ListViewItemSelectionChangedEventArgs) in a derived class, be sure to call the base class's OnItemSelectionChanged(ListViewItemSelectionChangedEventArgs) method so that registered delegates receive the event.

Applies to