|
Este artigo foi traduzido por máquina. Coloque o ponteiro do mouse sobre as frases do artigo para ver o texto original. Mais informações.
|
Tradução
Original
|
Propriedade Control.Left
.NET Framework 4.5
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (em System.Windows.Forms.dll)
// 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} ); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Função Server Core sem suporte), Windows Server 2008 R2 (Função Server Core com suporte com o SP1 ou posterior, Itanium sem suporte)
O .NET Framework não oferece suporte a todas as versões de cada plataforma. Para obter uma lista das versões com suporte, consulte .Requisitos de sistema do NET Framework.