Form.AutoSize Property
Assembly: System.Windows.Forms (in system.windows.forms.dll)
public: virtual property bool AutoSize { bool get () override; void set (bool value) override; }
/** @property */ public boolean get_AutoSize () /** @property */ public void set_AutoSize (boolean value)
public override function get AutoSize () : boolean public override function set AutoSize (value : boolean)
Not applicable.
Property Value
true if the form will automatically resize; false if it must be manually resized.Use AutoSize to force a form to resize to fit its contents.
A form does not automatically resize in the Visual Studio forms designer, regardless of the values of the AutoSize and AutoSizeMode properties. The form correctly resizes itself at run time according to the values of these two properties. By contrast, a custom UserControl automatically resizes itself both at design time and at run time.
When using AutoSize, the MinimumSize and MaximumSize properties are respected, but the current value of the Size property is ignored. Using AutoSize and AutoSizeMode also renders the AutoScroll property superfluous, as there is no way to shrink the form to hide its contained controls from view.
See the AutoSizeMode enumeration for information on how a form behaves when AutoSize is true.
The following code example shows a form created using code that automatically resizes to fit its contents. When run, the form displays 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. It also sets the AutoSize and AutoSizeMode to grow and shrink to fit the contents of its form.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.