BoundsSpecified Enumerazione

Definizione

Consente di specificare i limiti del controllo da utilizzare per definire la posizione e le dimensioni di un controllo.

Questa enumerazione supporta una combinazione bit per bit dei rispettivi valori dei membri.

public enum class BoundsSpecified
[System.Flags]
public enum BoundsSpecified
[<System.Flags>]
type BoundsSpecified = 
Public Enum BoundsSpecified
Ereditarietà
BoundsSpecified
Attributi

Campi

All 15

Specifica che sono definiti i valori per entrambe le proprietà Location e Size.

Height 8

Specifica che è definita l'altezza del controllo.

Location 3

Specifica che sono definite entrambe le coordinate X e Y del controllo.

None 0

Non viene specificato alcun limite.

Size 12

Specifica che sono definiti i valori per entrambe le proprietà Width e Height del controllo.

Width 4

Specifica che è definita la larghezza del controllo.

X 1

Specifica che è definito il bordo sinistro del controllo.

Y 2

Specifica che è definito il bordo superiore del controllo.

Esempio

private:
   void MyForm_Layout( Object^ /*sender*/, System::Windows::Forms::LayoutEventArgs^ /*e*/ )
   {
      // Center the Form on the user's screen everytime it requires a Layout.
      this->SetBounds( (Screen::GetBounds( this ).Width / 2) - (this->Width / 2), (Screen::GetBounds( this ).Height / 2) - (this->Height / 2), this->Width, this->Height, BoundsSpecified::Location );
   }
private void MyForm_Layout(object sender, System.Windows.Forms.LayoutEventArgs e)
{
   // Center the Form on the user's screen everytime it requires a Layout.
   this.SetBounds((Screen.GetBounds(this).Width/2) - (this.Width/2),
       (Screen.GetBounds(this).Height/2) - (this.Height/2),
       this.Width, this.Height, BoundsSpecified.Location);	
}

Private Sub MyForm_Layout(ByVal sender As Object, _
    ByVal e As System.Windows.Forms.LayoutEventArgs) Handles MyBase.Layout

    ' Center the Form on the user's screen everytime it requires a Layout.
    Me.SetBounds((System.Windows.Forms.Screen.GetBounds(Me).Width / 2) - (Me.Width / 2), _
        (System.Windows.Forms.Screen.GetBounds(Me).Height / 2) - (Me.Height / 2), _
        Me.Width, Me.Height, System.Windows.Forms.BoundsSpecified.Location)
End Sub

Commenti

Usare i membri di questa enumerazione quando si chiamano i SetBoundsCore metodi e SetBounds della Control classe.

Si applica a

Vedi anche