Using ToolStrip Control in .NET Windows Form
Provides a container for Windows toolbar objects.
Use ToolStrip and its associated classes in new Windows Forms applications to create toolbars that can have a Windows XP, Office, Internet Explorer, or custom appearance and behavior, all with or without themes, and with support for overflow and run-time item reordering. ToolStrip controls also offer a rich design-time experience that includes in-place activation and editing, custom layout, and sharing of horizontal or vertical space within a specified ToolstripContainer.
Exam related question:
You are creating a Windows Form that contains several ToolStrip controls.
You need to add functionality that allows a user to drag any ToolStrip control from one
edge of the form to another.
What should you do?
A. Configure a ToolStripContainer control to fill the form.
Add the ToolStrip controls to the ToolStripContainer control.
B. Configure a Panel control to fill the form.
Set the Anchor properties of the ToolStrip controls to Top, Bottom, Left, Right.
C. Add a ToolStrip controls to another ToolStrip control that is hosted by a
ToolStripControlHost control.
D. Add the ToolStrip controls to the form.
Set the Anchor properties of the ToolStrip controls to Top, Bottom, Left, Right.
Set the FormBorderStyle property of the form to SizableToolWindow.
Answer: A