ToolStrip.OnItemClicked(ToolStripItemClickedEventArgs) Method

Definition

Raises the ItemClicked event.

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

Parameters

Remarks

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

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

Applies to