在我的 Windows Phone 应用程序中,我使用网络浏览器来呈现这样的 HTML
private void webBrowserHTML_Loaded(object sender, RoutedEventArgs e)
{
WebBrowser web = sender as WebBrowser;
string description = web.DataContext.ToString();
web.NavigateToString(description);
}
我的问题是我有在变量中显示图像的 html 代码description
:
<a href=\"tel:3950\"><img width=\"220\" class=\"logo\" alt=\"3950\" src=\"bandeau3950.png\" /> </a>
我将图像与我的代码放在同一个文件夹中,但图像未显示在应用程序中。
请问有什么解决办法吗?