2015-01-21 4 views
1

안녕하세요. html 콘텐츠를 표시하고 싶습니다. 웹 브라우저에서 콘텐츠를 보여 주려고합니다. 그러나 우리는 Android와 같은 TextBlock의 내용을 보여주고 싶습니다. HTML.fromHtml()을 사용하여 TextView에 html 내용을 표시합니다. 7.Windows phone에서 Html.fromHtml()과 같습니다. 7

우리는 웹 브라우저를 시도 윈도우 폰에서 HTML.fromHtml()에 대한 대안을 찾기 위해 제발 도와주세요 :

private void WebBrowser_OnLoaded(object sender, RoutedEventArgs e) 
     { 
      String htmlTags = "<html><head><meta charset='UTF-8'/><meta name=\"viewport\" content=\"width='480', initial-scale='1'\"></head><body><center>{0}</center></body></html>"; 
      myWebView.NavigateToString(String.Format(htmlTags, getHTMLContent()); 
     } 


public string getHTMLContent() 
     { 
      StringBuilder htmlBody = new StringBuilder(); 
      htmlBody.Append("<table cellpadding=\"0\" cellspacing=\"0\" width=\"704\" height=\"484\" background=\"https://known.com/img/back/123456.jpg\" style=\"background-repeat: no-repeat; background-position: center;\">"); 
      htmlBody.Append("<tr>"); 
      htmlBody.Append("<td valign=top>"); 
      htmlBody.Append("<div style=\"position: absolute;\">"); 
      htmlBody.Append("<div style=\"position: absolute; display: table; width: 132px; height: 132px; top: 44px; left: 44px; z-index:0;\">"); 
      htmlBody.Append("<img src=\"https://known.com/img/icon/87654.jpg\" width=\"100%\" height=\"100%\"/>"); 
      htmlBody.Append("</div>"); 
      htmlBody.Append("<div style=\"position: absolute; display: table; width: 704px; height: 484px; top: 0px; left: 0px; z-index:0; \">"); 
      htmlBody.Append("<img src=\"https://known.com/img/icon/234255.jpg\" width=\"100%\" height=\"100%\"/>"); 
      htmlBody.Append("</div>"); 
      htmlBody.Append("<div style=\"position: absolute; display: table; width: 440px; height: 264px; top: 184px; left: 184px; z-index:0; font-family:times; font-size:14px; color:#FFFFFF; \" align=\"center\">"); 
      htmlBody.Append("<div style=\"display: table-cell;vertical-align: middle;\">"); 
      htmlBody.Append("</div>"); 
      htmlBody.Append("</div>"); 
      htmlBody.Append("</div>"); 
      htmlBody.Append("</td>"); 
      htmlBody.Append("</tr>"); 
      htmlBody.Append("</table>"); 
      return htmlBody.ToString(); 
     } 

그러나 우리는 때문에 클라이언트 요구 사항에 우리의 프로젝트에서이를 사용할 수 없습니다.

답변