如何阻止 WPF Web 浏览器加载页面?

发布于 2024-10-11 22:55:37 字数 71 浏览 2 评论 0原文

我看到了 GoBack、GoForward、Refresh 和 Navigate 的方法,但没有“停止”或“取消”。我该怎么做?

I see methods for GoBack, GoForward, Refresh, and Navigate, but no "Stop" or "Cancel". How do I do it?

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

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

发布评论

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

评论(2

天暗了我发光 2024-10-18 22:55:37

用户可以通过 WebBrowser 控件使用 InvokeScript 方法来停止页面导航。

yourWebBrowser.InvokeScript("eval", "document.execCommand('Stop');");

Use can use the InvokeScript method over WebBrowser control to stop page navigation.

yourWebBrowser.InvokeScript("eval", "document.execCommand('Stop');");
请爱~陌生人 2024-10-18 22:55:37

看起来有点棘手,您应该从 WPF WebBrowser 控件获取 IWebBrowser2 接口,之后您可能会访问此控件中未公开公开的一些方法。

更多详细信息请参见http:// /msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser(v=vs.90).aspx(访问本机 IWebBrowser2)

Looks like it is a bit tricky you should get IWebBrowser2 interface from the WPF WebBrowser control, after that you may get access to some methods that not publicly exposed in this control.

More details here http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser(v=vs.90).aspx (Getting to the native IWebBrowser2)

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