Gets the maximum size the form can be resized to.
Public Overrides Property MaximumSize As Size
public override Size MaximumSize { get; set; }
public: virtual property Size MaximumSize { Size get () override; void set (Size value) override; }
abstract MaximumSize : Size with get, set override MaximumSize : Size with get, set
The values of the height or width within the Size object are less than zero.
This property enables you to limit the size of a form to a specified maximum size. You can use this feature when displaying multiple windows at the same time, to ensure that a single window does not cause other windows to be hidden. If this property is set to a Size object that is 0 in height and 0 in width, the form will have no maximum size beyond the limits set by Windows.
The following code example demonstrates setting the MaximumSize property.
Public Sub New() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Set the maximum size, so if user maximizes form, it 'will not cover entire desktop. Me.MaximumSize = New Size(500, 500) End Sub
public Form1() : base() { //This call is required by the Windows Form Designer. InitializeComponent(); //Set the maximum size, so if user maximizes form, it //will not cover entire desktop. this.MaximumSize = new System.Drawing.Size(500, 500); }
public: Form1() : Form() { //This call is required by the Windows Form Designer. InitializeComponent(); //Set the maximum size, so if user maximizes form, it //will not cover entire desktop. this->MaximumSize = System::Drawing::Size( 500, 500 ); }
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