将URL提供给picturebox

时间:2011-04-19 08:59:19

标签: c# visual-studio picturebox

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

有可能吗?如果是的话那么,如果没有那么将会是什么样的替代方案呢?

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

让我知道我身边的任何意见

感谢

1 个答案:

答案 0 :(得分:4)

using System.Diagnostics;

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