Click here to Skip to main content
15,867,488 members
Articles / Programming Languages / C#

Silverlight 3 Out Of Browser Feature

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

Introduction

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 the MainPage.xaml and 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 and 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 and 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 and 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.

History

  • 6th November, 2009: Initial post

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

 
GeneralGood info, but it can be found elseware Pin
gaurav_verma_mca6-Nov-09 4:40
gaurav_verma_mca6-Nov-09 4:40 
GeneralRe: Good info, but it can be found elseware Pin
Kunal Chowdhury «IN»15-Feb-10 19:14
professionalKunal Chowdhury «IN»15-Feb-10 19:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.