--- title: "ToolStrip Technology Summary" ms.date: "03/30/2017" helpviewer_keywords: - "ToolStrip control [Windows Forms], technology summary" - "status bars [Windows Forms], technology summary" - "toolbars [Windows Forms], technology summary" - "menus [Windows Forms], technology summary" ms.assetid: e8d61973-7af9-429f-9df5-05a899c15a7b --- # ToolStrip Technology Summary This topic summarizes information about the `ToolStrip` control and the classes that support its use. The `ToolStrip` control and its associated classes provide a complete solution for creating toolbars, status bars, and menus. ## Namespaces ## Background With the `ToolStrip` control and its associated classes, you can create advanced toolbar functionality that has consistent and professional appearance and behavior. The `ToolStrip` control and classes offer the following improvements over previous controls: - A more consistent event model. - A more consistent design-time behavior that contains task lists and item collection editors. - Custom rendering with `ToolStripManager` and `ToolStripRenderer`. - Built-in rafting (sharing of horizontal or vertical space within the tool area when docked) with the `ToolStripContainer` and `ToolStripPanel`. - Design-time and run-time reordering of items with the property. - Relocation of items to an overflow menu with the property. - Completely configurable control location with the `ToolStripContainer`, `ToolStripPanel`, and `ToolStripContentPanel`. - Hosting of `ToolStrip`, traditional, or custom controls using `ToolStripControlHost`. - Merging of `ToolStrip` controls using `ToolStripPanel`. `ToolStrip` is the extensible base class for `MenuStrip`, `ContextMenuStrip`, and `StatusStrip`. These controls are containers that inherit common behavior and event handling, extended so that each implementation deals with the behavior that is appropriate for it. Controls that derive from are listed in the following table. The base `ToolStrip` class handles painting, user input, and drag-and-drop events for these controls. The `ToolStrip`, `MenuStrip`, `ContextMenuStrip`, and `StatusStrip` controls replace the previous toolbar, menu, shortcut menu, and status bar controls, although those controls are retained for backward compatibility. ## ToolStrip Classes at a Glance The following table shows the ToolStrip classes grouped by technology area. |Technology area|Class| |---------------------|-----------| |Toolbar, Status, and Menu containers|







| |ToolStrip items|





















| |Location|



| |Presentation and rendering|







| ## ToolStrip Design-Time Features The family of controls provides a rich set of tools and templates for in-place editing and defining the foundation of the user interface so that you can quickly create a working application. ### Task Dialog Boxes In Visual Studio, clicking the smart tag on a control in the designer displays a task list for convenient access to many frequently used commands. - [MenuStrip Tasks Dialog Box](/previous-versions/visualstudio/visual-studio-2010/ms233645(v=vs.100)) - [ToolStrip Tasks Dialog Box](/previous-versions/visualstudio/visual-studio-2010/ms233648(v=vs.100)) - [ContextMenuStrip Tasks Dialog Box](/previous-versions/visualstudio/visual-studio-2010/ms233646(v=vs.100)) - [StatusStrip Tasks Dialog Box](/previous-versions/visualstudio/visual-studio-2010/ms233642(v=vs.100)) - [ToolStripContainer Tasks Dialog Box](/previous-versions/visualstudio/visual-studio-2010/ms233647(v=vs.100)) ### Items Collection Editors In Visual Studio, when you click **Edit Items** on the task list or right-click the control and select **Edit Items** in the shortcut menu, the collection editor for the control is displayed. Collection editors let you add, remove, and reorder items that the control contains. You can also view and change the properties for the control and the control's items. - [MenuStrip Items Collection Editor](/previous-versions/visualstudio/visual-studio-2010/ms233625(v=vs.100)) - [StatusStrip Items Collection Editor](/previous-versions/visualstudio/visual-studio-2010/ms233631(v=vs.100)) - [ContextMenuStrip Items Collection Editor](/previous-versions/visualstudio/visual-studio-2010/ms233641(v=vs.100)) - [ToolStrip Items Collection Editor](/previous-versions/visualstudio/visual-studio-2010/ms233643(v=vs.100)) ## Hosting Controls The class provides built-in wrappers for , , and controls. You can also host any other existing or COM control in a . For an example of control hosting, see [How to: Wrap a Windows Forms Control with ToolStripControlHost](how-to-wrap-a-windows-forms-control-with-toolstripcontrolhost.md). ## Rendering classes implement a rendering scheme that is significantly different from other Windows Forms controls. With this scheme, you can easily apply styles and themes. To apply a style to a and all the objects it contains, you do not have to handle the event for each item. Instead, you can set the property to one of the values other than . Alternatively, you can set the directly to any class that inherits from the class. Setting this property automatically sets the . You can apply the same style to multiple objects in the same application by setting the to and setting the or property to that you want or value, respectively. For examples of rendering, see [How to: Create and Set a Custom Renderer for the ToolStrip Control in Windows Forms](create-and-set-a-custom-renderer-for-the-toolstrip-control-in-wf.md). ## Styles and Themes and associated classes provide an easy way to support visual styles and custom appearance that do not require overriding the methods for each item. Use the and the and properties. ## Rafting and Docking You can raft, dock, or absolutely position controls. items are laid out by the of the container. *Rafting* is the ability of toolbars to share horizontal or vertical space. A Windows form can have a that in turn has panels on the form's left, right, top, and bottom sides for positioning and rafting , , and controls. Multiple controls stack vertically if you put them in the left or right . They stack horizontally if you put them in the top or bottom . You can use the central of the to position traditional controls on the form. Any or all controls are directly selectable at design time and can be deleted. A is expandable and collapsible, and resizes with the controls that it contains. *Docking* is the specifying of a control's simple location on the form's left, right, top, or bottom side. The advantage of rafting over docking is that , , and controls can share horizontal or vertical space with other controls. Most of the controls can be docked to the form like other controls instead of using rafting. You can also specify that a control be freely positioned on the form by removing it from its and setting its `Dock` property to `None`, or you can specify its absolute position by setting the respective property. See [How to: Move a ToolStrip Out of a ToolStripContainer onto a Form](how-to-move-a-toolstrip-out-of-a-toolstripcontainer-onto-a-form.md). Use one or more controls for more flexibility, especially for Multiple Document Interface (MDI) applications, or if you do not need a . A provides a dockable space for locating and rafting controls but not traditional controls. By default, the does not appear in the designer **Toolbox**, but you can put it there by right-clicking the **Toolbox**, and then click **Choose Items**. You can also programmatically access the like any other class. The , , and let items overflow. This is similar to the way these items behave on Microsoft Office toolbars. ## See also - [ToolStrip Control Overview](toolstrip-control-overview-windows-forms.md) - [ToolStrip Control Architecture](toolstrip-control-architecture.md)