tags:

views:

200

answers:

2

When ever I launch my Silverlight Out-of-Browser application the window size does not match my layout. I've seen ways to provide different size icons using the XML file for Deployment.ApplicationIdentity, but not to specify size of window.

A: 

right click on the project go to properties click out of browser settings. there you can specify

A: 

This is managed via the Application Manifest file.

<SilverlightApp>
  <source>XAML or XAP file</source>
  <version>1.0 | 2.0</version>
  <width>[value in browser units or percentage]</width>
  <height>[value in browser units or percentage]</height>
</SilverlightApp>
Jon Galloway