我正在设计一个小型的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?


当前回答

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

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

其他回答

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

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

在UWP:

await Launcher.LaunchUriAsync(new Uri("http://google.com"));

我试着

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

这适用于大多数情况下,但我遇到了一个问题,有一个指向文件的url:

系统无法找到指定的文件。

所以,我尝试了这个解决方案,只是做了一些修改:

System.Diagnostics.Process.Start("explorer.exe", $"\"{uri}\"");

不用“”包装url,资源管理器会打开您的文档文件夹。

我想对上面的一个答案发表评论,但我还没有找到代表。

System.Diagnostics.Process.Start("explorer", "stackoverflow.com");

几乎工作,除非url有一个查询字符串,在这种情况下,这段代码只是打开一个文件资源管理器窗口。关键似乎是UseShellExecute标志,正如Alex Vang上面给出的答案(对其他关于在web浏览器中启动随机字符串的评论取模)。

您可以在默认浏览器中使用cmd命令start <link>打开一个链接,此方法适用于所有具有在cmd.exe上执行系统命令功能的语言。

这是我在。net 6中用来执行带有重定向输出和输入的系统命令的方法,也非常确定它在。net 5中经过一些修改后也能工作。

using System.Diagnostics.Process cmd = new();
cmd.StartInfo.FileName = "cmd.exe";
cmd.StartInfo.RedirectStandardInput = true;
cmd.StartInfo.RedirectStandardOutput = true;
cmd.StartInfo.CreateNoWindow = true;
cmd.StartInfo.UseShellExecute = false;
cmd.Start();


cmd.StandardInput.WriteLine("start https://google.com"); 
cmd.StandardInput.Flush();
cmd.StandardInput.Close();
cmd.WaitForExit();