views:

152

answers:

2

I have a silverlight app which can be installed as out-of-browser.

I've defined the Height and Width in the main UserControl.

I've defined the same Height and Width in the OutOfBrowserSettings.xml file.

But the user can still resize the out-of-browser frame window. How do I prevent this?

A: 

I don't think you can. It seems to be another one of those "User is King" choices.

AnthonyWJones
+1  A: 

Hi,

The window hosting the Silverlight application cannot be controlled by the application when it is running with normal permissions, that would be a security issue.

However, if you install the OOB application with elevated permissions, you can change the chrome of the window and define your own. This will prevent the resizing (except of course if you explicitly implement resizing with the custom chrome).

To change the chrome options, use the OOB Settings in the project properties.

Changing OOB properties

LBugnion