Atıyorum butonunun adı button1 olsun;
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Gitmek istediğin URL");
}
Aynı şekilde picturebox'ın click eventi içinde aynı şeyi yapabilirsin;
private void pictureBox1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Gitmek istediğin URL");
}