I have a webbrowser control that loads an html page which contains a silverlight object.

I want to use the webbrowser control to get the silverlight canvas so that I can pass it to a WriteableBitmap() object.

The silverlight is being loaded into a div called SilverlightHostControl and I am trying to get it like this in C#:

object element = webBrowser.Document.GetElementById("SilverlightControlHost");

This returns a {System.Windows.Forms.HtmlElement} which contains the silverlight object but I don't know how to get the Silverlight object so I can use it the WriteableBitmap() object.

link|improve this question

What are you loading into the Silverlight Plugin? XAML or a XAP? – AnthonyWJones Mar 16 '10 at 19:55
Xaml generated by javascript. – darren Mar 16 '10 at 21:54
feedback

1 Answer

up vote 0 down vote accepted

Further research shows that it can't be done.

The primary issue is that the Silverlight is running its own .Net version and the WinForm is running its own .Net version and never the two shall meet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.