ToolStrip.OnItemAdded(ToolStripItemEventArgs) Method

Definition

Raises the ItemAdded event.

protected public:
 virtual void OnItemAdded(System::Windows::Forms::ToolStripItemEventArgs ^ e);
protected internal virtual void OnItemAdded (System.Windows.Forms.ToolStripItemEventArgs e);
abstract member OnItemAdded : System.Windows.Forms.ToolStripItemEventArgs -> unit
override this.OnItemAdded : System.Windows.Forms.ToolStripItemEventArgs -> unit
Protected Friend Overridable Sub OnItemAdded (e As ToolStripItemEventArgs)

Parameters

e
ToolStripItemEventArgs

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

Applies to