开发者

Make image from Silverlight control with embedded html

开发者 https://www.devze.com 2023-02-03 10:18 出处:网络
How to make image fro开发者_如何学运维m Silverlight control with embedded html. Html was embedded with HtmlPage help. Currently in image i see empty space, where have to be html content. I know that h

How to make image fro开发者_如何学运维m Silverlight control with embedded html. Html was embedded with HtmlPage help. Currently in image i see empty space, where have to be html content. I know that html is rendered in absolute positioned div over silverlight plugin.

Image proxyImage = new Image(); proxyImage.Source = new WriteableBitmap(Application.Current.RootVisual, Application.Current.RootVisual.RenderTransform);


The clue is in your answer "over silverlight plugin". Silverlight does not have access to the image that the browser renders over the image. It can only see the surface that it is rendering.

0

精彩评论

暂无评论...
验证码 换一张
取 消