フォントを Windows Phone アプリケーションに埋め込むのは非常に簡単ですが、静的な html ファイルを表示している WebBrowser コントロールでフォントを使用する方法が見つかりません。それを行う方法はありますか?
以下のコードを使用して、html ファイルを表示しています。
Uri uri = new Uri(AppResources.red_termsOfUse_URI, UriKind.Relative);
Stream stream = Application.GetResourceStream(uri).Stream;
using (StreamReader reader = new StreamReader(stream, new System.Text.UnicodeEncoding()))
{
string htmlDocument = reader.ReadToEnd();
this.webBrowser.NavigateToString(htmlDocument);
}