Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable resizing out of browser Silverlight 4 Window [duplicate]

Possible Duplicate:
How can I prevent the user from resizing the silverlight out-of-browser window?

Is there any way to actually remove the ability to maximize/resize the out of browser window since I want my application to be of a certain size.

Thanks

like image 493
Sandeep Bansal Avatar asked Jun 09 '11 19:06

Sandeep Bansal


1 Answers

I can't be 100% sure but I would hazard a guess you could just go:

this.resizable = false;
this.maximise = FALSE; 

in the constructor of the views code behind file.

like image 99
Shannon Avatar answered Sep 29 '22 23:09

Shannon