我在WPF-Application中使用WebBrowser-Control,如
<WebBrowser x:Name="webBrowser" Margin="0,28,0,0" />
现在,当我导航到包含链接的mht页面并且用户单击此链接之一时,将在WebBrowser-Control中打开新页面。但它应该在一个新的Default-Browser-Window中打开。不应更改WebBrowser-Control中的内容。 有没有办法改变这种行为?
答案 0 :(得分:12)
您可以在导航事件中使用Proces.Start()在默认浏览器中打开新页面,并设置e.Cancel = true;
,以便控件中的页面不会更改。
示例:
@ MainWindow.xaml.cs
using System.Diagnostics;
using System.Windows;
using System.Windows.Navigation;
namespace OpenDefaultBrowser
{
public partial class MainWindow : Window
{
private static bool willNavigate;
public MainWindow()
{
InitializeComponent();
}
private void webBrowser1_Navigating(object sender, NavigatingCancelEventArgs e)
{
// first page needs to be loaded in webBrowser control
if (!willNavigate)
{
willNavigate = true;
return;
}
// cancel navigation to the clicked link in the webBrowser control
e.Cancel = true;
var startInfo = new ProcessStartInfo
{
FileName = e.Uri.ToString()
};
Process.Start(startInfo);
}
}
}
@ MainWindow.xaml
<Window x:Class="OpenDefaultBrowser.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="464" Width="1046">
<Grid>
<WebBrowser Height="425" HorizontalAlignment="Left" Name="webBrowser1" VerticalAlignment="Top" Width="1024" Source="http://stackoverflow.com/" Navigating="webBrowser1_Navigating" />
</Grid>
</Window>
答案 1 :(得分:0)
我不认为WebBrowser
是这样的,即使在普通浏览器中如果点击超链接并且它代表一个简单的URL(而不是基于javascript的超链接),它将打开该浏览器中的URL窗口(以及特定标签)本身。 WebBrowser
控件模仿浏览器本身的这种基本行为。
我认为您可以右键单击超链接并说“在新窗口中打开”(请参阅WebBrowser
控件中是否启用了该选项)。
如果禁用该选项,则可以使用特殊的HTMLHost API启用它。
答案 2 :(得分:-1)
默认情况下,Web浏览器控件在单击链接时不会打开默认浏览器,只会打开在Internet Explorer中浏览器内部单击的链接。现在我们可以使用_DocumentCompleted事件,但它需要一个基于事件的触发器,如链接按钮,才能工作。现在的问题是,如果浏览器控件中的html具有href,那么这甚至不起作用。解决方法是使用_NewWindow事件。代码如下:
/* The event handler*/
private void webBrowser1_NewWindow(object sender, CancelEventArgs e)
{
var webbrowser = (WebBrowser)sender;
e.Cancel = true;
OpenWebsite(webbrowser.StatusText.ToString());
webbrowser = null;
}
/* The function call*/
public static void OpenWebsite(string url)
{
Process.Start(GetDefaultBrowserPath(), url);
}
private static string GetDefaultBrowserPath()
{
string key = @"http\shell\open\command";
RegistryKey registryKey =
Registry.ClassesRoot.OpenSubKey(key, false);
return ((string)registryKey.GetValue(null, null)).Split('"')[1];
}
邀请改进建议。快乐的编码。