我正在设计一个小型的c#应用程序,其中有一个web浏览器。我目前有我的电脑上所有的默认说谷歌chrome是我的默认浏览器,但当我点击我的应用程序中的一个链接打开一个新窗口,它打开ie浏览器。有没有办法让这些链接在默认浏览器中打开呢?还是我的电脑出了问题?

我的问题是,我在应用程序中有一个网络浏览器,所以说你去谷歌,输入“堆栈溢出”,右键单击第一个链接,单击“在新窗口中打开”,它在IE中打开,而不是Chrome。这是我编码不正确的东西,还是我的计算机上有一个设置不正确

= = = = = =进行编辑

This is really annoying. I am already aware that the browser is IE, but I had it working fine before. When I clicked a link it opened in chrome. I was using sharp develop to make the application at that time because I could not get c# express to start up. I did a fresh windows install and since I wasn't too far along in my application, I decided to start over, and now I am having this problem. That is why I am not sure if it is my computer or not. Why would IE start up the whole browser when a link is clicked rather than simply opening the new link in the default browser?


当前回答

看一下GeckoFX控件。

GeckoFX是一个开源组件 这使得嵌入Mozilla很容易 Gecko (Firefox)到任何。net Windows 表单应用程序。写得很干净, 完全注释的c#, GeckoFX是 完美的替换默认 基于Internet explorer的WebBrowser 控制。

其他回答

如果我们使用Process.Start(URL), dotnet核心将抛出一个错误。下面的代码将在dotnet核心工作。你可以添加任何浏览器,而不是Chrome。

var processes = Process.GetProcessesByName("Chrome");
var path  = processes.FirstOrDefault()?.MainModule?.FileName;
Process.Start(path,  url);

我在。net 5中使用它,在Windows上使用Windows窗体。它甚至适用于其他默认浏览器(如Firefox):

Process.Start(new ProcessStartInfo { FileName = url, UseShellExecute = true });

基于这个和这个。

public static void GoToSite(string url)
{
     System.Diagnostics.Process.Start(url);
}

这应该能解决你的问题

你可以直接写

System.Diagnostics.Process.Start("http://google.com");

编辑:WebBrowser控件是IE的嵌入式副本。 因此,其中的任何链接都将在IE中打开。

要更改此行为,可以处理导航事件。

你试过这里提到的Processas: http://msdn.microsoft.com/de-de/library/system.diagnostics.process.aspx吗?

你可以用

Process myProcess = new Process();

try
{
    // true is the default, but it is important not to set it to false
    myProcess.StartInfo.UseShellExecute = true; 
    myProcess.StartInfo.FileName = "http://some.domain.tld/bla";
    myProcess.Start();
}
catch (Exception e)
{
    Console.WriteLine(e.Message);
}