我觉得真的很愚蠢,但我无法弄清楚这一点。
这完美无瑕;
((System.Windows.Controls.WebBrowser)e.Control).Navigate(new Uri("http://www.google.com"));
但是当我尝试导航到磁盘上的文件时它失败了
string path =@"D:\dev\MySite.html";
((System.Windows.Controls.WebBrowser)e.Control).Navigate(new Uri(path));
我想我不能使用 Uri 但我还应该使用什么来导航到磁盘上的文件?
完整代码;
private void webControlAvailable(object sender, ControlAvailableEventArgs e)
{
string path =@"D:\dev\MySite.html";
((System.Windows.Controls.WebBrowser)e.Control).Navigate(new Uri(path));
}