I saw this Silverlight application that works inside the browser but if you clicked Install it will be downloaded on your machine and runs as Desktop Application how this can be done !! http://os75.com/apps/Translator.html
+1
A:
It can be done because ever Silverlight app that can be installed is Sandboxed
lukas
2010-08-17 02:27:55
Can you give me a tutorial or something smiler of how to make this
Sam
2010-08-17 02:30:02
+1
A:
That is now a feature in Silverlight 4. Quote:
The .NET Common Runtime (CLR) now enables the same compiled code to be run on the desktop and Silverlight without change.
To get it working you'll need Visual Studio 2010 and the Silverlight 4 SDK. Then, when you create a new project you open settings from the Solution Explorer and check the "Enable running application out of browser" check box on the Silverlight tab. There are a few extra settings for icons and such available in a separate dialog launch-able from a button right under the check box.
Paul Sasik
2010-08-17 02:30:55
See my addition to my answer above. You don't really need a tutorial. It's just a matter of enabling the feature in project properties.
Paul Sasik
2010-08-17 02:41:22
A:
Out-of-Browser Support: http://msdn.microsoft.com/en-US/library/dd550721%28VS.95%29.aspx
Chris
2010-08-17 09:43:17