vote up 0 vote down star

Is there a way to scale a silverlight app to 100% width and 100% height of the browser frame that the application is embedded in?

I'm aware of the full screen capabilities, I'd like it to sit nicely inside the browser.

flag

56% accept rate

2 Answers

vote up 0 vote down check

Using Width=”Auto” Height=”Auto” on your LayoutRoot will cause Silverlight object to fill the room the object tag has. By default (TestPage.html) it is object ... width="100%" height="100%" You might also want to set the d:DesignWidth="640" and d:DesignHeight="480" that way it is easier to do layout in Expression Blend.

link|flag
Thank you, the Auto keyword was indeed the one I needed. So simple, yet so easy to miss! – JSmyth Jan 14 at 0:49
vote up 1 vote down

Remove the Width and Height attributes from the root UserControl.

link|flag

Your Answer

Get an OpenID
or

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