I have a simple example for the HtmlViewer.
I just have a button that sets the HtmlCode Property in hopes it would render it likethe example on your page. But it does nothing. What am I doing wrong.
private void Button_Click(object sender, RoutedEventArgs e) { this.XamHtmlViewer.SourceUri = null; this.XamHtmlViewer.HtmlCode = "<html><body>Hello World!</body></html>"; }
I have attached the example.
Did you set the Windowless parameter on your Silverlight application to "true"?
Devin
What does that do actually ?