给图片框提供 URL

发布于 2024-11-01 22:30:01 字数 167 浏览 0 评论 0原文

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

是否可以?如果是,那么如何,如果否,那么有什么替代方案?

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

如果有任何意见请告诉我,

谢谢

I have a picture box in my application which displays pictures. Now if user clicks the picture/picture box then he should be redirected to the hyperlink given for that particular image in picturebox.

Is it possible? If yes, then how , if no then what would be an alternative?

I am using C# (Windows development)

Let me know for any inputs from my side

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄凉少年不暖心 2024-11-08 22:30:01
using System.Diagnostics;

        private void pictureBox1_Click(object sender, EventArgs e)
        {
            Process.Start("http://www.stackoverflow.com/questions/5713934/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");
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文