NavigateToString 方法不适用于指向 LocalData 文件夹中图像的标记。(据我所知)。事实上,NavigateToString 也破坏了 JavaScript 和 CSS 链接。
服务器上的图像
一种解决方案是将源更改为指向网络服务器而不是本地数据。我不确定它是否适用于您的应用场景。
图像和 HTML 作为内容
第二种选择是将您的 html 和图像文件作为内容添加到您的应用程序并使用
WebView1.Navigate(new Uri("ms-appx-web:///assets/SampleHtmlPage.html"));
加载 HTML。
进程中的 HTTP 服务器
这是一个在应用程序中使用自定义 HTTP 服务器来处理问题的解决方案。
在 Metro WebView 中加载本地 HTML 内容 (Windows 8)
Base 64 编码图像
最后,还有另一种解决方案,使用 LocalData 文件夹中的图像的 Base64 编码。
internal async void MakeHtmlString()
{
StorageFile imageFile; // get image file here.
var html =
string.Format("<div><img src='data:image/png;base64,{0}'",
await GetImageBase64(imageFile));
}
internal async Task<string> GetImageBase64(StorageFile imageFile)
{
var imageStream = await imageFile.OpenAsync(FileAccessMode.Read);
var inputStream = imageStream.GetInputStreamAt(0);
var dataReader = new DataReader(inputStream);
var dataResults = await dataReader.LoadAsync((uint)imageStream.Size);
var bytes = new byte[dataResults];
dataReader.ReadBytes(bytes);
return Convert.ToBase64String(bytes);
}
最后一种方法适用于图像,但不适用于 CSS 文件。