I am going through some problem In webview, In my webview I am loading local HTMl file with images(Converted as Base64 String) & adding CSS as per our requirement like this,
MainView.NavigateToString(css.ToString()); //CSS is String Builder
Now I am adding popup on the same page, which have List of text if you Click on text it would be display relevant HTML page in webview,after that I am trying load Html with Horizontal navigation etc.
But webview wont allow any other Control upon it, Because of this Reason I am going for RichTextBlock.
But what is the initial point to load HTML string in RichTextBlock,
Question: How to load HTML string in RichTextBlock or any other Control rather than Webview.