1

这是我的简单代码,但由于某种原因它引发了异常


    private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
            {
                System.Diagnostics.Process.Start("chrome", "https://www.google.com/");
            }

例外:

System.ComponentModel.Win32Exception: 'The system cannot find the file specified.'

我不明白为什么会这样

4

1 回答 1

0

使用 WinForms 的 linkLabel 组件打开一个 url

private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
    System.Diagnostics.Process.Start("http://www.url.com"); // will automaticaly redirect the user to his default web browser 
}

官方文档中找到更多信息。
看看那里:已经回答的问题
祝你好运。

于 2021-05-07T02:06:56.230 回答