我正在尝试将Web浏览器控件URL设置为嵌入到应用程序中的名为“ HomeHTML.html”的HTML文件。我不知道如何针对它设置新的URL。
webbrowser.Url = new Uri(HomeHTML.html); //dosen't work
答案 0 :(得分:0)
我解决了我的问题,如果其他人也遇到同样的问题,那么此代码将起作用。
string currentDirectory = Directory.GetCurrentDirectory();
string filePath = System.IO.Path.Combine(currentDirectory"home.html");
webBrowser1.Url = new Uri(filepath);