PictureBox.SizeMode Özellik

Tanım

Görüntünün nasıl görüntülendiğini gösterir.

C#
public System.Windows.Forms.PictureBoxSizeMode SizeMode { get; set; }

Özellik Değeri

Değerlerden PictureBoxSizeMode biri. Varsayılan değer: Normal.

Özel durumlar

Atanan değer değerlerden PictureBoxSizeMode biri değil.

Örnekler

Aşağıdaki kod örneği özelliğinin SizeMode kullanımını gösterir. Bu örneği çalıştırmak için aşağıdaki kodu bir Windows Formuna yapıştırın ve formun InitializePictureBoxAndButton oluşturucusundan veya Load-event işleme yönteminden yöntemini çağırın.

C#
PictureBox PictureBox1 = new PictureBox();
Button Button1 = new Button();

private void InitializePictureBoxAndButton()
{

    this.Controls.Add(PictureBox1);
    this.Controls.Add(Button1);
    Button1.Location = new Point(175, 20);
    Button1.Text = "Stretch";
    Button1.Click += new EventHandler(Button1_Click);

    // Set the size of the PictureBox control.
    this.PictureBox1.Size = new System.Drawing.Size(140, 140);

    //Set the SizeMode to center the image.
    this.PictureBox1.SizeMode = PictureBoxSizeMode.CenterImage;

    // Set the border style to a three-dimensional border.
    this.PictureBox1.BorderStyle = BorderStyle.Fixed3D;

    // Set the image property.
    this.PictureBox1.Image = new Bitmap(typeof(Button), "Button.bmp");
}

private void Button1_Click(System.Object sender, System.EventArgs e)
{
    // Set the SizeMode property to the StretchImage value.  This
    // will enlarge the image as needed to fit into
    // the PictureBox.
    PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
}

Açıklamalar

Bu özellik için geçerli değerler numaralandırmadan PictureBoxSizeMode alınır.

Varsayılan olarak, modunda Normal , Image öğesinin sol üst köşesine PictureBoxkonumlandırılır ve görüntünün için çok büyük PictureBox olan herhangi bir bölümü kırpılır. değerinin StretchImage kullanılması, görüntünün içine sığacak şekilde esnetilmesine veya küçültülmesine PictureBoxneden olur. değerinin Zoom kullanılması görüntünün esnetilmesine veya küçültülmesine PictureBoxneden olur; ancak özgün görüntüdeki en boy oranı korunur.

değerinin AutoSize kullanılması, denetimin her zaman görüntüye sığacak şekilde yeniden boyutlandırmasına neden olur. değerinin CenterImage kullanılması görüntünün istemci alanında ortalanmasına neden olur.

Ş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, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

Ayrıca bkz.