开发者

click on a link event webbrowser c#?

开发者 https://www.devze.com 2023-03-12 06:11 出处:网络
I want to open a link in IE browser from the web browser control in my winform ... the webbrowser control navigate to a page when the user click on a link it opens in the inte开发者_开发问答rnet explo

I want to open a link in IE browser from the web browser control in my winform ... the webbrowser control navigate to a page when the user click on a link it opens in the inte开发者_开发问答rnet explorer browser.


Basically handle the WebBrowser.Navigating Event, cancel the navigation and open up the url in explorer like this:

private void WebBrowserNavigating(object sender, WebBrowserNavigatingEventArgs e)
{
  e.Cancel = true;
  Process.Start("iexplorer.exe", e.Url);
}
0

精彩评论

暂无评论...
验证码 换一张
取 消