ToolStrip.RenderMode Property
.NET Framework 3.0
Gets or sets the painting styles to be applied to the ToolStrip.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
ToolStrip Members
System.Windows.Forms Namespace
ToolStrip.Renderer Property
How to: Set the ToolStrip Renderer at Run Time
How to: Set the ToolStrip Renderer for an Application
How to: Create a Professionally Styled ToolStrip Control
Assembly: System.Windows.Forms (in system.windows.forms.dll)
/** @property */ public ToolStripRenderMode get_RenderMode () /** @property */ public void set_RenderMode (ToolStripRenderMode value)
public function get RenderMode () : ToolStripRenderMode public function set RenderMode (value : ToolStripRenderMode)
Not applicable.
Property Value
One of the ToolStripRenderMode values. The default is ManagerRenderMode.| Exception type | Condition |
|---|---|
| The value being set is not one of the ToolStripRenderMode values. | |
| ToolStripRenderMode is set to Custom without the Renderer property being assigned to a new instance of ToolStripRenderer. |
The following code example demonstrates the syntax for setting common ToolStrip properties, including the RenderMode property.
// This is an example of some common ToolStrip property settings. // toolStrip1.AllowDrop = false; toolStrip1.AllowItemReorder = true; toolStrip1.AllowMerge = false; toolStrip1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); toolStrip1.AutoSize = false; toolStrip1.CanOverflow = false; toolStrip1.Cursor = System.Windows.Forms.Cursors.Cross; toolStrip1.DefaultDropDownDirection = System.Windows.Forms.ToolStripDropDownDirection.BelowRight; toolStrip1.Dock = System.Windows.Forms.DockStyle.None; toolStrip1.GripMargin = new System.Windows.Forms.Padding(3); toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { toolStripButton1}); toolStrip1.ImageScalingSize = new System.Drawing.Size(20, 20); toolStrip1.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow; toolStrip1.Location = new System.Drawing.Point(0, 0); toolStrip1.Margin = new System.Windows.Forms.Padding(1); toolStrip1.Name = "toolStrip1"; toolStrip1.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0); toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; toolStrip1.ShowItemToolTips = false; toolStrip1.Size = new System.Drawing.Size(109, 273); toolStrip1.Stretch = true; toolStrip1.TabIndex = 0; toolStrip1.TabStop = true; toolStrip1.Text = "toolStrip1"; toolStrip1.TextDirection = System.Windows.Forms.ToolStripTextDirection.Vertical90;
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Reference
ToolStrip ClassToolStrip Members
System.Windows.Forms Namespace
ToolStrip.Renderer Property
Other Resources
How to: Create and Set a Custom Renderer for the ToolStrip Control in Windows FormsHow to: Set the ToolStrip Renderer at Run Time
How to: Set the ToolStrip Renderer for an Application
How to: Create a Professionally Styled ToolStrip Control