Click here to Skip to main content
15,885,546 members
Articles / Desktop Programming / XAML

How can you implement the Silverlight 3 Out Of Browser feature?

Rate me:
Please Sign up or sign in to vote.
4.67/5 (2 votes)
30 Oct 2009CPOL2 min read 10.9K   5  
Here I will explain the feature & step by step process for implementing the Silverlight Out-Of-Browser functionality.

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:

XML
<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:

C#
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”.

image

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.

This article was originally posted at http://kunal2383.blogspot.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India

Kunal Chowdhury is a former Microsoft "Windows Platform Development" MVP (Most Valuable Professional, 2010 - 2018), a Codeproject Mentor, Speaker in various Microsoft events, Author, passionate Blogger and a Senior Technical Lead by profession.

He is currently working in an MNC located in India. He has a very good skill over XAML, C#, Silverlight, Windows Phone, WPF and Windows app development. He posts his findings, articles, tutorials in his technical blog (www.kunal-chowdhury.com) and CodeProject.


Books authored:


Connect with Kunal on:





Comments and Discussions

 
-- There are no messages in this forum --