1

我正在尝试在我的 xaml 文件中加载一个 html 文件。我试过这个

 <WebView HorizontalAlignment="Left" Height="100" VerticalAlignment="Top" Width="100" Name="WebView1" Margin="109,82,0,0"/>

string url = "ms-appdata:///local/assets/index.html";
WebView1.Navigate(new Uri(url));

但不工作。我想知道这是否可能或是否有任何其他方式。

谢谢

4

1 回答 1

0

您不能指向Uri应用程序数据文件夹中的文件,请尝试以下操作:

using Windows.Storage;

StorageFile file = await ApplicationData.Current.LocalFolder.GetFileAsync("assets/index.html");
string html = await FileIO.ReadTextAsync(file);
WebView1.NavigateToString(html);
于 2013-10-23T17:28:07.713 回答