Control.Left Proprietà

Definizione

Ottiene o imposta la distanza in pixel tra il bordo sinistro del controllo e il bordo sinistro dell'area client del contenitore.

C#
[System.ComponentModel.Browsable(false)]
public int Left { get; set; }

Valore della proprietà

Oggetto Int32 che rappresenta la distanza in pixel tra il bordo sinistro del controllo e il bordo sinistro dell'area client del contenitore.

Attributi

Esempio

L'esempio di codice seguente crea tre Button controlli in una maschera e ne imposta le dimensioni e la posizione usando le varie proprietà correlate alle dimensioni e alla posizione. In questo esempio è necessario disporre di un oggetto Form con larghezza e altezza di almeno 300 pixel.

C#
// Create three buttons and place them on a form using 
// several size and location related properties. 
private void AddOKCancelButtons()
{
   // Set the button size and location using 
   // the Size and Location properties.
   Button buttonOK = new Button();
   buttonOK.Location = new Point(136,248);
   buttonOK.Size = new Size(75,25);
   // Set the Text property and make the 
   // button the form's default button. 
   buttonOK.Text = "&OK";
   this.AcceptButton = buttonOK;

   // Set the button size and location using the Top, 
   // Left, Width, and Height properties.
   Button buttonCancel = new Button();
   buttonCancel.Top = buttonOK.Top;
   buttonCancel.Left = buttonOK.Right + 5;
   buttonCancel.Width = buttonOK.Width;
   buttonCancel.Height = buttonOK.Height;
   // Set the Text property and make the 
   // button the form's cancel button.
   buttonCancel.Text = "&Cancel";
   this.CancelButton = buttonCancel;

   // Set the button size and location using 
   // the Bounds property.
   Button buttonHelp = new Button();
   buttonHelp.Bounds = new Rectangle(10,10, 75, 25);
   // Set the Text property of the button.
   buttonHelp.Text = "&Help";

   // Add the buttons to the form.
   this.Controls.AddRange(new Control[] {buttonOK, buttonCancel, buttonHelp} );
}

Commenti

Il Left valore della proprietà equivale alla Point.X proprietà del Location valore della proprietà del controllo.

Le modifiche apportate ai valori delle Width proprietà e Left causano la Right modifica del valore della proprietà del controllo.

Si applica a

Prodotto Versioni
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

Vedi anche