ToolStripItem.OnOwnerChanged(EventArgs) Method

Definition

Raises the OwnerChanged event.

protected:
 virtual void OnOwnerChanged(EventArgs ^ e);
protected virtual void OnOwnerChanged (EventArgs e);
abstract member OnOwnerChanged : EventArgs -> unit
override this.OnOwnerChanged : EventArgs -> unit
Protected Overridable Sub OnOwnerChanged (e As EventArgs)

Parameters

e
EventArgs

An EventArgs that contains the event data.

Remarks

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

The OnOwnerChanged 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 OnOwnerChanged(EventArgs) in a derived class, be sure to call the base class' OnOwnerChanged(EventArgs) method so that registered delegates receive the event.

Applies to