Windows Phone 7.1 の WebBrowser でローカル ファイルを読み込もうとしていますが、常に例外が発生するか、空白のページが表示されます。
で試しました
Stream stream = Application.GetResourceStream(
new Uri("./Html/par/index.html",
UriKind.Relative)).Stream;
using (StreamReader reader = new StreamReader(stream))
{
// Navigate to HTML document string
this.webBrowser.NavigateToString(reader.ReadToEnd());
}
これは空白のページを起動しています。
index.html と必要なすべてのファイル (css/js) をコンテンツとして設定し、IsScriptEnable を「true」に設定しました。
この問題を解決する方法はありますか?