Files
docs-desktop/dotnet-desktop-guide/framework/winforms/controls/toolstripcontainer-control-overview.md
T
Andy De George c0ba284473 Initial winforms content migrated (#18)
* Merge winforms framework content to working branch (#14)

* Breadcrumb / TOC / Move net5 to net folder (#15)

* change path from net5 to net

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Mess with bread/toc

* Add .net 5 winforms placeholder article (#16)

* added some metadata and adjusted net5 placeholder

* corrections

* corrections

* corrections

* Test1

* Swapping landing page vs concept

* fix links

* Fix links

* Fix desc
2020-09-01 16:26:21 -07:00

2.9 KiB

title, ms.date, f1_keywords, helpviewer_keywords, ms.assetid
title ms.date f1_keywords helpviewer_keywords ms.assetid
ToolStripContainer Control Overview 03/30/2017
ToolStripContainer
toolbars [Windows Forms], built-in rafting
ToolStripContainer control [Windows Forms], about ToolStripContainer control
c7d63bff-64e2-4a63-bd89-d31bc96dacb8

ToolStripContainer Control Overview

A xref:System.Windows.Forms.ToolStripContainer has panels on its left, right, top, and bottom sides for positioning and rafting xref:System.Windows.Forms.ToolStrip, xref:System.Windows.Forms.MenuStrip, and xref:System.Windows.Forms.StatusStrip controls. Multiple xref:System.Windows.Forms.ToolStrip controls stack vertically if you put them in the left or right xref:System.Windows.Forms.ToolStripContainer. They stack horizontally if you put them in the top or bottom xref:System.Windows.Forms.ToolStripContainer. You can use the central xref:System.Windows.Forms.ToolStripContentPanel of the xref:System.Windows.Forms.ToolStripContainer to position traditional controls on the form.

Any or all xref:System.Windows.Forms.ToolStripContainer controls are directly selectable at design time and can be deleted. Each panel of a xref:System.Windows.Forms.ToolStripContainer is expandable and collapsible, and resizes with the controls that it contains.

Important ToolStripContainer Members

Name Description
xref:System.Windows.Forms.ToolStripContainer.BottomToolStripPanel%2A Gets the bottom panel of the xref:System.Windows.Forms.ToolStripContainer.
xref:System.Windows.Forms.ToolStripContainer.BottomToolStripPanelVisible%2A Gets or sets a value indicating whether the bottom panel of the xref:System.Windows.Forms.ToolStripContainer is visible.
xref:System.Windows.Forms.ToolStripContainer.LeftToolStripPanel%2A Gets the left panel of the xref:System.Windows.Forms.ToolStripContainer.
xref:System.Windows.Forms.ToolStripContainer.LeftToolStripPanelVisible%2A Gets or sets a value indicating whether the left panel of the xref:System.Windows.Forms.ToolStripContainer is visible.
xref:System.Windows.Forms.ToolStripContainer.RightToolStripPanel%2A Gets the right panel of the xref:System.Windows.Forms.ToolStripContainer.
xref:System.Windows.Forms.ToolStripContainer.RightToolStripPanelVisible%2A Gets or sets a value indicating whether the right panel of the xref:System.Windows.Forms.ToolStripContainer is visible.
xref:System.Windows.Forms.ToolStripContainer.TopToolStripPanel%2A Gets the top panel of the xref:System.Windows.Forms.ToolStripContainer.
xref:System.Windows.Forms.ToolStripContainer.TopToolStripPanelVisible%2A Gets or sets a value indicating whether the top panel of the xref:System.Windows.Forms.ToolStripContainer is visible.

See also