Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试运行已导入解决方案资源管理器的 HTML 文件。我不知道如何在代码中引用解决方案资源管理器中的文档。我怎样才能做到这一点?
我目前正在使用此代码,但它不起作用:
process.start(".\help.html")
您需要设置要复制到输出目录的 HTML 文件。在解决方案资源管理器中右键单击您的文件:
将“复制到输出目录”属性设置为“如果较新则复制”:
最后,像往常一样运行文件:
Process.Start("help.html")