SizeMode PictureBox :
Klik edit pada PictureBox :
Kemudian klok 3 titik, maka akan muncul gambar dibawah
Kemudian klik import, setelah memilih gambar, klik OK, kemudaian masuk ke properties PictureBox, Focus pada SizeMode memiliki pilihan Normal, StretchImage, AutoSize, CenterImage, dan Zoom
Setelah itu pilih normal maka akan keluar layout seperti dibawah :
Untuk melihat perbedaan ke 5 nilai property tersebut, masukan sintax berikut dibawah ini pada dengan event ComboBox :
Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles MyBase.Load
With ComboBox1
.Items.Add("Normal")
.Items.Add("StretchImage")
.Items.Add("AutoSize")
.Items.Add("CenterImage")
.Items.Add("Zoom")
.SelectedIndex = 0
.DropDownStyle = ComboBoxStyle.DropDownList
End With
End Sub
Private Sub ComboBox1_SelectedIndexChanged(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles ComboBox1.SelectedIndexChanged
PictureBox1.SizeMode = ComboBox1.SelectedIndex
End Sub
End Class
Kemudian jalankan tekan F5, lalu silahkan pilih di ComboBox SizeMode yang dimau, dibawah ini adalah tampilan dari SizeMode tersebut :