Control.DefaultSize Property
Gets the default size of the control.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The DefaultSize property represents the Size of the control when it is initially created. You can adjust the size of the control by setting its Size property value.
Note |
|---|
To maintain better performance, do not set the Size of a control in its constructor. The preferred method is to override the DefaultSize property. |
Note |
|---|
On Windows Server 2003 systems, the size of a Form is restricted by the maximum pixel width and height of the monitor. |
When overriding the DefaultSize property in a derived class, it is preferable to return a Size with the desired dimensions rather than to override all the implementation.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note