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

3 Ways of Applying Layouts using Silverlight

Rate me:
Please Sign up or sign in to vote.
4.68/5 (10 votes)
8 Oct 2009CPOL3 min read 58.5K   473   28   5
3 ways of applying layouts using Silverlight

Update: Other article links are moved towards the bottom.

Table of Contents

Introduction

Perhaps this article is very basic. But I have seen many Silverlight developers struggling with layout controls and objects in Silverlight. In this section, we will quickly walk through 3 different methods of layout for Silverlight. In this article, we will go through each of these layout implementations and make a simple sample for the same.

Canvas, Grid and StackPanel

There are three ways provided by Silverlight for layout management - Canvas, Grid and Stack panel. Each of these methodologies fit into different situations as per layout needs. All these layout controls inherit from Panel class. In the next sections, we will go through each of them to understand how they work.

Canvas – Absolute Positioning

Canvas is the simplest methodology for layout management. It supports absolute positioning using ‘X’ and ‘Y’ coordinates. ‘Canvas.Left’ helps to specify the X co-ordinate while ‘Canvas.Top’ helps to provide the ‘Y’ coordinates.

Below is a simple code snippet which shows how a rectangle object is positioned using ‘Canvas’ on co-ordinates (50,150).

XML
<Canvas x:Name="MyCanvas">
<Rectangle Fill="Blue" Width="100" 
Height="100" 
Canvas.Left="50" 
Canvas.Top="150"/>
</Canvas> 

Below is how the display looks like. When you the run the code, the XAML viewer will position the rectangle object on absolute ‘X” and ‘Y’ coordinates.

Image 1

Grid – Table layout

Grid layout helps you position your controls using rows and columns. It’s very similar to table defined in HTML.

Image 2

Below is a simple table with two columns and two rows defined using Grid. We have shown how the table display looks like. Using the Grid.ColumnDefinition, we have defined two columns and using Grid.RowDefinition, we have defined two rows. We have then created 4 text blocks which are then specified in each section using Grid.Column and Grid.Row. For instance, to place in the first column, we need specify the Grid.Column as 0 and Grid.Row as 0. We have followed the same pattern for everyone and you can see that all the textblocks are placed in the appropriate sections.

Stack – One Above the Other

As the name, so the behavior. Stack allows you to arrange your UI elements vertically or horizontally.

Image 3

For instance, below are 4 elements which are arranged in a stack panel element. You can see how the stack aligns / stacks the elements one above other. You can also stack the UI elements horizontally or vertically depending on the nature of your layout.

Source Code

We have provided one single source code which has three XAML files explaining a sample of each layout. You can download the source code from here.

Other Silverlight FAQs

Silverlight FAQ Part 1: This tutorial has 21 basic FAQs which will help you understand WPF, XAML, help you build your first Silverlight application and also explains the overall Silverlight architecture.

SilverLight FAQ Part 2 (Animations and Transformations): This tutorial has 10 FAQ questions which starts with Silverlight animation fundamentals and then shows a simple animated rectangle. The article then moves ahead and talks about 4 different ways of transforming the objects.

For Further reading do watch  the below interview preparation videos and step by step video series.

License

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


Written By
Architect https://www.questpond.com
India India

Comments and Discussions

 
GeneralMy vote of 5 Pin
Nigam Patel2-Jan-12 0:38
Nigam Patel2-Jan-12 0:38 
Good artical

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.