Control::DefaultSize Property
Gets the default size of the control.
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 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note