Is it possible to animate the vertical size of a Silverlight plugin?

Want to resize the plugin as part of the internal Silverlight animation. Possible? I can't seem to find the answer. thank.

+1


source to share


1 answer


You probably don't want to do this. You are much better off if the plugin takes up 100% of the window and then set it to Windowless = true so you can overlay HTML.

I recently moved a plugin on the page while scrolling and it was very choppy, but when I switched to moving the html content up and down the page it was smooth.



You can animate the size by calling Javascript and using DispatchTimer, but as I said, this will probably be mutable, and probably the best way.

+1


source







All Articles