PictureBoxSizeMode Výčet
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Určuje umístění obrázku v rámci PictureBox.
public enum class PictureBoxSizeMode
public enum PictureBoxSizeMode
type PictureBoxSizeMode =
Public Enum PictureBoxSizeMode
- Dědičnost
Pole
| Name | Hodnota | Description |
|---|---|---|
| Normal | 0 | Obrázek je umístěn v levém horním rohu PictureBoxokna . Obrázek se ořízne, pokud je větší, než je obsažen v obrázku PictureBox . |
| StretchImage | 1 | Obrázek uvnitř je PictureBox roztažený nebo roztažený tak, aby odpovídal velikosti PictureBox. |
| AutoSize | 2 | Velikost PictureBox je rovna velikosti obrázku, který obsahuje. |
| CenterImage | 3 | Obrázek se zobrazí uprostřed, pokud PictureBox je větší než obrázek. Pokud je obrázek větší než PictureBoxobrázek, je obrázek umístěn uprostřed PictureBox a vnější okraje jsou oříznuty. |
| Zoom | 4 | Velikost obrázku se zvětší nebo zmenší a zachová poměr velikosti. |
Příklady
Následující příklad kódu ukazuje použití SizeMode vlastnosti. Pokud chcete tento příklad spustit, vložte do formuláře Windows Následující kód a volejte metodu InitializePictureBoxAndButton z konstruktoru formuláře nebo metody zpracování událostí Load.
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;
}
Dim PictureBox1 As New PictureBox()
Dim WithEvents Button1 As New Button
<STAThread()> _
Public Shared Sub Main()
Application.EnableVisualStyles()
Application.Run(New Form1())
End Sub
Private Sub InitializePictureBoxAndButton()
Me.Controls.Add(PictureBox1)
Me.Controls.Add(Button1)
Button1.Location = New Point(175, 20)
Button1.Text = "Stretch"
' Set the size of the PictureBox control.
Me.PictureBox1.Size = New System.Drawing.Size(140, 140)
'Set the SizeMode to center the image.
Me.PictureBox1.SizeMode = PictureBoxSizeMode.CenterImage
' Set the border style to a three-dimensional border.
Me.PictureBox1.BorderStyle = BorderStyle.Fixed3D
' Set the image property.
Me.PictureBox1.Image = New Bitmap(GetType(Button), "Button.bmp")
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
' Set the SizeMode property to the StretchImage value. This
' will enlarge the image as needed to fit into
' the PictureBox.
PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage
End Sub
Poznámky
Pomocí členů tohoto výčtu nastavte hodnotu SizeMode vlastnosti PictureBox.