* 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
2.6 KiB
title, ms.date, helpviewer_keywords, ms.assetid, author, ms.author, manager
| title | ms.date | helpviewer_keywords | ms.assetid | author | ms.author | manager | |||
|---|---|---|---|---|---|---|---|---|---|
| Dock Controls | 03/30/2017 |
|
bc11f2e4-e90a-4830-b0e2-f43b6e2b8bec | jillre | jillfra | jillfra |
How to: Dock controls on Windows Forms
You can dock controls to the edges of your form or have them fill the control's container (either a form or a container control). For example, Windows Explorer docks its xref:System.Windows.Forms.TreeView control to the left side of the window and its xref:System.Windows.Forms.ListView control to the right side of the window. Use the xref:System.Windows.Forms.Control.Dock%2A property for all visible Windows Forms controls to define the docking mode.
Note
Controls are docked in reverse z-order.
The xref:System.Windows.Forms.Control.Dock%2A property interacts with the xref:System.Windows.Forms.Control.AutoSize%2A property. For more information, see AutoSize Property Overview.
To dock a control
-
In Visual Studio, select the control that you want to dock.
-
In the Properties window, click the arrow to the right of the xref:System.Windows.Forms.Control.Dock%2A property.
An editor is displayed that shows a series of boxes representing the edges and the center of the form.
-
Click the button that represents the edge of the form where you want to dock the control. To fill the contents of the control's form or container control, click the center box. Click (none) to disable docking.
The control is automatically resized to fit the boundaries of the docked edge.
Note
Inherited controls must be
Protectedto be able to be docked. To change the access level of a control, set its Modifier property in the Properties window.
See also
- Windows Forms Controls
- Labeling Individual Windows Forms Controls and Providing Shortcuts to Them
- Controls to Use on Windows Forms
- Windows Forms Controls by Function
- How to: Anchor and Dock Child Controls in a FlowLayoutPanel Control
- How to: Anchor and Dock Child Controls in a TableLayoutPanel Control
- AutoSize Property Overview
- How to: Anchor Controls on Windows Forms