Reputation: 173
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.
Upvotes: 2
Views: 1074
Reputation: 53115
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>
Upvotes: 1
Reputation: 419
right click on the project go to properties click out of browser settings. there you can specify
Upvotes: 2