它向我們展示瞭如何使用這兩個文本,並通過使用ResourceMap的圖像的內容分享出來的HTML。
但是相應的article沒有向我們展示如何正確讀取它並將其放入webview中。
我知道如何獲取資源地圖,但我不知道如何最好地將它放入WebView
。
this.sharedResourceMap = await this.shareOperation.Data.GetResourceMapAsync();
foreach (KeyValuePair<string, RandomAccessStreamReference> item in this.sharedResourceMap)
{
ResourceMapValue.Text += "\nKey: " + item.Key;
}
Item.Key
將會像ms-appx:///Assets/Logo.png
https://stackoverflow.com/questions/41401047/display-local-images-in-uwp-webview-control/41423396#41423396是一個相關的問題,但他們必須在本地文件夾,其中的文件我的是在這個「資產」文件夾 – freshWoWer