Modifier

ToolStripRenderer.DrawToolStripBorder(ToolStripRenderEventArgs) Method

Definition

Draws the border for a ToolStrip.

public:
 void DrawToolStripBorder(System::Windows::Forms::ToolStripRenderEventArgs ^ e);
public void DrawToolStripBorder (System.Windows.Forms.ToolStripRenderEventArgs e);
member this.DrawToolStripBorder : System.Windows.Forms.ToolStripRenderEventArgs -> unit
Public Sub DrawToolStripBorder (e As ToolStripRenderEventArgs)

Parameters

e
ToolStripRenderEventArgs

A ToolStripRenderEventArgs that contains the data to draw the border for the ToolStrip.

Remarks

The DrawToolStripBorder method provides the entry point to the rendering code for the border of a ToolStrip. Use this method to draw the border of a ToolStrip when overriding the ToolStrip.OnPaint method, or to force the border of a ToolStrip to be drawn in a custom ToolStripRenderer. To change the way the border of a ToolStrip is rendered, override the OnRenderToolStripBorder method in a class derived from ToolStripRenderer.

Applies to