Form.MaximumSize Propiedad

Definición

Obtiene el tamaño máximo al que puede ajustarse el formulario.

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

Valor de propiedad

Size que representa el tamaño máximo del formulario.

Excepciones

Los valores del alto y del ancho dentro del objeto Size son menores que cero.

Ejemplos

En el ejemplo siguiente se muestra cómo establecer la MaximumSize propiedad .

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

Comentarios

Esta propiedad permite limitar el tamaño de un formulario a un tamaño máximo especificado. Puede usar esta característica al mostrar varias ventanas al mismo tiempo, para asegurarse de que una sola ventana no hace que otras ventanas estén ocultas. Si esta propiedad se establece en un Size objeto que es 0 en alto y 0 en ancho, el formulario no tendrá ningún tamaño máximo más allá de los límites establecidos por Windows.

Se aplica a

Consulte también