Give URL to picturebox

本文关键字:picturebox to URL Give | 更新日期: 2023-09-27 17:51:21

我的应用程序中有一个显示图片的图片框。现在,如果用户单击图片/图片框,那么他应该被重定向到图片框中给定的特定图像的超链接。

有可能吗?如果是,那么怎么做,如果不是,那么有什么替代方案?

我正在使用c# (Windows开发)

如果我这边有什么意见请告诉我

谢谢

Give URL to picturebox

using System.Diagnostics;
        private void pictureBox1_Click(object sender, EventArgs e)
        {
            Process.Start("http://www.stackoverflow.com/questions/5713934/give-url-to-picturebox");
        }