Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WindowsPhoneWebbrowserがコンテンツを正しくレンダリングしていません。たとえば、ユーロ記号は特殊文字「(euro(€)」として表示されます。WebBrowserでこのような実際のコンテンツを表示する方法はありますか?
これを試してください、それは私のために働きます:
StringHtmlContent = StringHtmlContent.Replace("€", "&euro ;"); //between &euro and ; no whitespace
または、あなたの場合:
using WebBrowser.NavigateToString("<html><Body><table><tr><td>(euro (&euro ;)</td></td></table></body><html>")