Silverlight 3 came up with Out Of Browser support. Using that feature, one can install the application just like a standalone Windows application. Hence there is no need to open the browser to run the Silverlight application. Today for the first time, I went through the APIs & created a sample application. Here I will discuss about the same to give you a demonstration. It is quite easy to implement.
Create a Silverlight application using Visual Studio 2008. This will automatically create “MainPage.xaml”. Now open MainPage.xaml & add the following lines inside the LayoutRoot
Grid:
<StackPanel Margin="20" HorizontalAlignment="Center">
<TextBlock Text="Silverlight Out Of Browser Demo Application"
FontSize="20" HorizontalAlignment="Center"/>
<Button x:Name="btnInstall" Content="Install as Out Of Browser Application"
Width="300" Height="20" Margin="20"/>
</StackPanel>
Run your application to check whether your Silverlight application is working or not. Now if you click on the button, there will be no effect as we didn't write the code for it. Hence go for it. Open the code behind file “MainPage.xaml.cs” and register the button event. Inside the button event, write the below code:
App.Current.Install();
Run your application & click the Install button. You will come across Catastrophic Failure exception. Yes, right. This is because you didn't mark the application as Out of Browser application. You have to explicitly tell it to be installed as out of browser. To do this, right click on your Silverlight project & go to properties. Enable the check box titled “Enable running application out of browser”.
Click on the button named “Out-of-Browser Settings…”. Here you can provide the title, size & icon for the install application. Now run your Silverlight application & right click on the page. You will find a new menu coming on the Silverlight context menu to install it as OOB (Out-Of-Browser). You can use the same menu item to install it. This will do the steps automatically. This comes automatically if your application supports the same. Here, we wrote our own code, so that, if we click on the button it will install. Hence, click on the button. This will show you a popup to install the application in your PC. If you go ahead, this will install it on desktop & start menu. If successfully installed, it will open the same as a standalone application. Close everything and go to the desktop. Open the installed application from the shortcut it generated. You will find that exact application is now available as a desktop application.
CodeProject