Silverlight Navigation : Browser Navigation Overview

Silverlight does not provide built in direct navigation system not it provides integration with browser navigation system but Silverlight provide some other features that can be used for navigation while developing Silverlight applications. There is two... 

Continue reading »

Silverlight Plug-in Lifecycle

Silverlight Application class provides several services that commonly required by Silverlight application, so when you create a Silverlight you must create a class that is being derived from Silverlight Application class. Application class represents... 

Continue reading »

Silverlight Application Lifetime Management

Silverlight Application class provides a number of features to developers and Application Lifetime management is one feature that is being offered by Silverlight Application class. You can add code to your application class that runs at the following... 

Continue reading »

Silverlight Application and Programming Model

Application that are written for targeting Silverlight 2.0 platform using managed code uses Silverlight Application model. Application model refers to application packaging and the common functionality encapsulated by the Application class. The application... 

Continue reading »

Silverlight Layout Container Panel: Grid

Grid is one of the Silverlight container layout panel that enable complex layout. By default grid contains one row and one column. RowDefinations and ColumDefinations collections also be used to define more rows and columns in Grid. RowDefination and... 

Continue reading »

Silverlight Layout Container Panels : Stack Panel

Stack Panel is one of the Silverlight panel elements enable layout. Stack panel arranges objects in a list, list can be vertical or horizontal depending upon the direction. Orientation property determined the direction of list, default value of orientation... 

Continue reading »

Silverlight Layout Container Panels – Dock Panel

Silverlight Dock Panel is one of the Silverlight Panel that enables layout. DockPanel is used to arrange a set of objects around the edges of panel. Dock Panel’s Dock property enables you to specify the location of objects inside Dock Panel. If you... 

Continue reading »

Silverlight Layout Container Panels – Canvas Panel

When you start creating Silverlight based applications, one of first things you will need to choose how your Silverlight application layout. Silverlight provides five layout panels. The default panel is Grid panel. Canvas Panel Canvas is one of the Silverlight... 

Continue reading »

How to Test XAML

XAML is acronym for eXtensible Application Markup Language (and pronounced “Zammel”) and it is used for developing Silverlight Application. XAML can be written using any text editor like Notepad++, EditPlus or Simply Notepad, but after writing XAML... 

Continue reading »