kacak41
A Little Bit Silence
Kullanıcı
-
Üyelik
02.01.2014
-
Yaş/Cinsiyet
32 / E
-
Meslek
Öğrenci
-
Konum
Kocaeli
-
Ad Soyad
M** Ö**
-
Mesajlar
73
-
Beğeniler
10 / 22
-
Ticaret
0, (%0)
picturebox un MouseEnter ve MouseLeave olaylarına aşağıdaki kodları yazabilirsin ne kadar büyeyeceğini benim 10 yazdığım yerden değiştirebilirsin.
private void pictureBox1_MouseEnter(object sender, EventArgs e)
{
pictureBox1.Height += 10;
pictureBox1.Width += 10;
}
private void pictureBox1_MouseLeave(object sender, EventArgs e)
{
pictureBox1.Height -= 10;
pictureBox1.Width -= 10;
}