AutoSizeMode Enumeration
Specifies how a control will behave when its AutoSize property is enabled.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Member name | Description | |
|---|---|---|
| GrowAndShrink | The control grows or shrinks to fit its contents. The control cannot be resized manually. | |
| GrowOnly | The control grows as much as necessary to fit its contents but does not shrink smaller than the value of its Size property. The form can be resized, but cannot be made so small that any of its contained controls are hidden. |
Setting the GrowAndShrink value produces the same behavior that you get for controls with the AutoSize property enabled but which have no
AutoSizeMode property. The MinimumSize and MaximumSize properties are respected, but the current value of the Size property is ignored.
The following code example shows a form created using code that automatically resizes to fit its contents. When ran, the form will display a Label, a TextBox for entering a URL, and a Button for displaying that URL inside of the user's default Web browser. The code example uses a FlowLayoutPanel to lay out the contained controls one after the other, and sets the AutoSize and AutoSizeMode to grow and shrink to fit the contents of its form.
Available since 2.0