Use the Dock property to define how a control is automatically resized as its parent control is resized. For example, setting Dock to DockStyle..::.Left causes the control to align itself with the left edges of its parent control and to resize as the parent control is resized. Controls are docked in their Z-order, which is the visual layering of controls on a form along the form's Z-axis (depth).
A control can be docked to one edge of its parent container or can be docked to all edges and fill the parent container.
Setting the Margin property on a docked control has no effect on the distance of the control from the the edges of its container.
Note: |
|---|
The
Anchor and Dock properties are mutually exclusive. Only one can be set at a time, and the last one set takes precedence.
|
Notes to Inheritors:
When overriding the Dock property in a derived class, use the base class's Dock property to extend the base implementation. Otherwise, you must provide all the implementation. You are not required to override both the get and set methods of the Dock property; you can override only one if needed.