StatusBar.OnPanelClick(StatusBarPanelClickEventArgs) Method

Definition

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

Parameters

Remarks

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

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

Applies to

See also