Control.DefaultSize Property
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. |
The following code example overrides the DefaultSize property, and makes the default size of the form 500 pixels square.
protected: property System::Drawing::Size DefaultSize { virtual System::Drawing::Size get() override { // Set the default size of // the form to 500 pixels square. return System::Drawing::Size( 500, 500 ); } }
/** @property
*/
protected Size get_DefaultSize()
{
// Set the default size of
// the form to 500 pixels square.
return new Size(500, 500);
}
Windows 98, Windows 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 .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note