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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.