ToolStripRenderer.OnRenderToolStripPanelBackground Method

Definition

Raises the RenderToolStripPanelBackground event.

protected:
 virtual void OnRenderToolStripPanelBackground(System::Windows::Forms::ToolStripPanelRenderEventArgs ^ e);
protected virtual void OnRenderToolStripPanelBackground (System.Windows.Forms.ToolStripPanelRenderEventArgs e);
abstract member OnRenderToolStripPanelBackground : System.Windows.Forms.ToolStripPanelRenderEventArgs -> unit
override this.OnRenderToolStripPanelBackground : System.Windows.Forms.ToolStripPanelRenderEventArgs -> unit
Protected Overridable 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