Control.Height Özellik

Tanım

Denetimin yüksekliğini alır veya ayarlar.

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

Özellik Değeri

Int32

Denetimin piksel cinsinden yüksekliği.

Öznitelikler

Örnekler

Aşağıdaki kod örneği, bir formda üç Button denetim oluşturur ve boyut ve konumla ilgili çeşitli özellikleri kullanarak boyutlarını ve konumlarını ayarlar. Bu örnek, genişliği ve yüksekliği en az 300 piksel olan bir Form değeriniz olmasını gerektirir.

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} );
}

Açıklamalar

ve Top özellik değerlerinde yapılan Height değişiklikler, denetimin Bottom özellik değerinin değişmesine neden olur.

Not

Türetilmiş denetim Splitter için minimum yükseklik bir pikseldir. Denetimin Splitter varsayılan yüksekliği üç pikseldir. Denetimin yüksekliğini Splitter birden küçük bir değere ayarlamak özellik değerini varsayılan yüksekliğe sıfırlar.

Şunlara uygulanır

Ürün Sürümler
.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
Windows Desktop 3.0, 3.1, 5, 6, 7

Ayrıca bkz.