我如何从 WebKitBrowser 获取链接

发布于 2024-11-29 23:09:25 字数 191 浏览 0 评论 0原文

我使用WebKitBrowser(webket.net),我希望当我点击WebKitBrowser内部的链接时我可以自定义如何处理这个链接(有些链接我想指定机器的默认浏览器),所以我想知道我可以在哪里拦截这次活动。

我检查了 webkitbrowser 类,没有找到正确的事件,似乎在 webviewclass 中,但我不确定。

谢谢!

I use WebKitBrowser (webket.net), I hope that when I click on a link inside WebKitBrowser I can customize how to handle this link (some links I want to specify the machine's default browser), so I want to know where I can intercept this event.

I checked the webkitbrowser class, did not find the right event, it seems in the webviewclass, but I'm not sure.

Thanks!

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

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

发布评论

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

评论(1

潜移默化 2024-12-06 23:09:25

要获取可以使用的链接列表,

WebKit.DOM.NodeList links = Browser.Document.GetElementsByTagName("link");
foreach (WebKit.DOM.Element link in links)
{
    if (link.GetAttribute("href").CompareTo(link_addr) == 0) {
         // Do Your Thing
    }
}

您可以使用导航事件来控制每个链接的位置。
如果它是要在您的程序上打开的链接,则无需执行任何操作 - 否则执行此操作

 e.Cancel = true;

,然后将链接地址发送到系统的浏览器

to get a list of links you can use

WebKit.DOM.NodeList links = Browser.Document.GetElementsByTagName("link");
foreach (WebKit.DOM.Element link in links)
{
    if (link.GetAttribute("href").CompareTo(link_addr) == 0) {
         // Do Your Thing
    }
}

you could probably use the Navigating event to control where each link goes.
If it's a link to open on your program do nothing - otherwise do

 e.Cancel = true;

and then send the link address to the system's browser

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文