Form.MaximumSize Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the maximum size the form can be resized to.
public:
property System::Drawing::Size MaximumSize { System::Drawing::Size get(); void set(System::Drawing::Size value); };
public:
virtual property System::Drawing::Size MaximumSize { System::Drawing::Size get(); void set(System::Drawing::Size value); };
public System.Drawing.Size MaximumSize { get; set; }
public override System.Drawing.Size MaximumSize { get; set; }
member this.MaximumSize : System.Drawing.Size with get, set
Public Property MaximumSize As Size
Public Overrides Property MaximumSize As Size
Property Value
A Size that represents the maximum size for the form.
Exceptions
The values of the height or width within the Size object are less than zero.
Examples
The following example demonstrates setting the MaximumSize property.
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 );
}
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 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
Remarks
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.