ToolStripProfessionalRenderer.OnRenderToolStripPanelBackground Method

Definition

Raises the RenderToolStripPanelBackground event.

protected:
 override void OnRenderToolStripPanelBackground(System::Windows::Forms::ToolStripPanelRenderEventArgs ^ e);
protected override void OnRenderToolStripPanelBackground (System.Windows.Forms.ToolStripPanelRenderEventArgs e);
override this.OnRenderToolStripPanelBackground : System.Windows.Forms.ToolStripPanelRenderEventArgs -> unit
Protected Overrides Sub OnRenderToolStripPanelBackground (e As ToolStripPanelRenderEventArgs)

Parameters

Remarks

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

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

Applies to