views:

56

answers:

1

I have a silverlight control on a page. It is set to "Width=100% Height=100%", and the containing div is set to an absoulute position with "0" on all edges. On a small screen, when the silverlight content is taller than the screen, the bottom is cut off, and there is no scroll bar. Does anyone know how to solve this problem?

A: 

Wrap the control in a ScrollViewer.

David
That doesn't work. The silverlight plugin is tall enough to handle the content, but the plugin itself is being lost off the bottom of the screen with no scrollbar. I have tried setting the overflow to auto and scroll, to no avail.
Sako73