//Gönder butonu
int sayi = Convert.ToInt32(textBox1.Text);
switch (sayi)
{
case 1:
pictureBox1.Load("https://besthqwallpapers.com/Uploads/23-11-2019/112658/thumb2-neon-light-background-neon-lasers-bright-purple-background-neon-backgrounds.jpg");
break;
case 2:
pictureBox1.Load("https://images.wallpapersden.com/image/wxl-small-memory_58461.jpg");
break;
case 3:
pictureBox1.Load("https://c4.wallpaperflare.com/wallpaper/500/442/354/outrun-vaporwave-hd-wallpaper-preview.jpg");
break;
default:
string mesaj = "Geçersiz bir rakam girdiniz.";
string baslik = "Uyarı";
MessageBox.Show(mesaj, baslik);
break;
}
//Temizle butonu
pictureBox1.Image = null;