ToolStripRenderer.DrawToolStripBorder(ToolStripRenderEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.