将网络浏览器控件 url 设置为嵌入的 html 文件?
Set webrowser control url to embedded html file?
我正在尝试将网络浏览器控件 URL 设置为嵌入到应用程序中的名为 "HomeHTML.html" 的 HTML 文件。我不知道如何定位它来设置新的 URL。
webbrowser.Url = new Uri(HomeHTML.html); //dosen't work
我解决了我的问题,如果其他人有同样的问题,此代码将起作用。
string currentDirectory = Directory.GetCurrentDirectory();
string filePath = System.IO.Path.Combine(currentDirectory"home.html");
webBrowser1.Url = new Uri(filepath);
我正在尝试将网络浏览器控件 URL 设置为嵌入到应用程序中的名为 "HomeHTML.html" 的 HTML 文件。我不知道如何定位它来设置新的 URL。
webbrowser.Url = new Uri(HomeHTML.html); //dosen't work
我解决了我的问题,如果其他人有同样的问题,此代码将起作用。
string currentDirectory = Directory.GetCurrentDirectory();
string filePath = System.IO.Path.Combine(currentDirectory"home.html");
webBrowser1.Url = new Uri(filepath);