Click here to Skip to main content
Click here to Skip to main content

Silverlight Carousel: Creating a Silverlight Control Displays Picture in an Interactive Carousel

By , 2 Aug 2009
 
screen capture

Introduction and Background

What is Carousel? Carousel is just a Silverlight 2.0 (now it's has been updated to Silverlight v3) control which can display collections of pictures like a carousel (have you ever see a carousel?). When I creating Mashup in Microsoft Popfly I saw a display control named "Carousel." It was very attractive to me so I wanted to find one like this to use it in my own application. Using Google I found YetAnotherCarousel, but it was too coarse to use. And the other one I found was created in Silverlight V1 and was very hard to use. But the idea dogged me, attracted me day and night. I Googled again and again but could not find a perfect one. So one day, I asked myself, "Why not create one for myself?"

Key Features

  • It's really a Silverlight V2 (v3 also) Control, all written in C#.
  • Very simple to use.
  • Has many useful properties to control it's behaviour.
  • Can turning continuous or step by step.

Using the Control

Using the Carousel control is very simple just like any other control. First of all, you add the assembly (cokkiy.display.carousel) and reference it to your Silverlight Project. Then look at the code:

  1. Add the XMLNS reference to your Page XAML file beginning.
    <UserControl x:Class="ControlTest.Page"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
        xmlns:display="clr-namespace:Cokkiy.Display;assembly=Cokkiy.Display.Carousel"
                 Width="800" Height="600">
  2. Place the Carousel in your layout control. I put it in a grid, and you can put it in any UIElement as a content or child item.
    <display:Carousel x:Name="carousel" TurnDirection="Counterclockwise"
          Padding="5,5,5,5" >
                <display:Carousel.Background>
                    <LinearGradientBrush EndPoint="0.5,0" StartPoint="0.5,1">
                        <GradientStop Color="#FF000000"/>
                        <GradientStop Color="#FFFFFFFF" Offset="1"/>
    
                    </LinearGradientBrush>
                </display:Carousel.Background>
                <display:Carousel.ItemSources>
                    <display:ItemSource Title="01" ImageSource="Images/01.jpg"/>
                    <display:ItemSource Title="02" ImageSource="Images/02.jpg"/>
                    <display:ItemSource Title="03" ImageSource="Images/03.jpg"/>
    
                    <display:ItemSource Title="04" ImageSource="Images/04.jpg"/>
                    <display:ItemSource Title="05" ImageSource="Images/05.jpg"/>
                    <display:ItemSource Title="06" ImageSource="Images/06.jpg"/>
                    <display:ItemSource Title="07" ImageSource="Images/07.jpg"/>
                    <display:ItemSource Title="08" ImageSource="Images/08.jpg"/>
                </display:Carousel.ItemSources>
    
            </display:Carousel>

The ImageSource property just is the Silverlight Image's source, so you can set it any valid Url as Image's source do, more info about it you can refer MSDN's Image's source property.

Notice how I added a Carousel in my page. The Carousel has 8 images as its children. Let's look at the screen capture.

Screen capture

How It Works?

From the screen capture we can know the Carousel is composed of three main parts. The Canvas where the image placed, the small item (the carousel leaf) contains an image which can turn around with the ellipse (it is a virtual image ellipse does not exist) and the panel displays the selected image (the large image in the picture). All three parts are also Silverlight controls which have their own properties. The carousel leaf control I called is CarouselItem which calculates the position of where to place the Canvas, and the scale range by itself. The key point is in placing each item in a proper point and making its size fit any position, and making it turn along with the ellipse.

To make the Carousel control like a real carousel, we must ensure:

  • The farther item is smaller than the nearer item, and the nearest item is the biggest item.
  • The item in the back (father) is under the item in the front (near).
  • The item in the foreground is blurred.

Let's see the following figure demo the concept.

carousel figure

When the center point, O, is constant, the positon and size of CarouselItem at point P only depends to the angle of A. We can calc the positon and size like following code.

    // Position 
    double dx = Axis.Width * Math.Cos(newAngle) + Center.X; 
    double dy = Axis.Height * Math.Sin(newAngle) + Center.Y; 
    Canvas.SetLeft(this, dx);
    Canvas.SetTop(this, dy); 
    // Scale 
    double sc = 2 + Math.Cos(newAngle - Math.PI / 2); 
    ScaleTransform st = (
        this.RenderTransform as TransformGroup).Children[0] as ScaleTransform; 
    st.ScaleX = sc; 
    st.ScaleY = sc; 
    // Set the ZIndex based the distance from us, the far item 
    // is under the near item 
    Canvas.SetZIndex(this, (int)dy);

The position and size all only depends on the angle, so it's very easy to make it turn around the ellipse. Silverlight support the DependencyProperty animation, so we make the angle as a DependencyProperty. And make a DoubleAnimation on each item's angle property. The DoubleAnimation has a property named By which means the total amount by which the animation changes its starting value. When we set it to 2*PI, it starts turning a lap.

    Storyboard storyboard = new Storyboard();
    //this.Resources.Add(name, storyboard);

    // Angle animation
    DoubleAnimation doubleAnimation = new DoubleAnimation();
    doubleAnimation.By = 2*Math.PI;
    doubleAnimation.Duration = duration;
    doubleAnimation.RepeatBehavior = RepeatBehavior.Forever;

    // Set storyboard target property
    storyboard.Children.Add(doubleAnimation);
    Storyboard.SetTarget(doubleAnimation, item);
    Storyboard.SetTargetProperty(doubleAnimation, new PropertyPath("Angle"));

We create a storyboard for each item and then add all these storyboards to a global storyboard. Then if we want the carousel to turn, we just start the global storyboard.

History

  • 23rd November, 2008: Initial post
  • 26rd November, 2008: Fixed a bug in source code. When remove an item from the collection, it's will throw an exception, now fixed.
  • 2nd August,2009, Updated the control to Silverlight V3.

My English is not very good so I hope you can understand what I've said. The sample code  include some pictures from public web, you should not use the image in your product.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)

About the Author

cokkiy
Team Leader
China China
Member
The God created the world.
The programer made the world easy.
I am a programer like c# and c++, so I am writting application with it.
Creating beautiful application make life easy.
If you have a project and looking for a man, I'll be say "hi, I am just the man you are looking for."

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionData driven PinmemberAdriaan Davel7 Mar '12 - 0:14 
Questioni wand to display the image caruser over a windows form, how can i do this??? PinmemberMember 209938220 Aug '11 - 2:55 
AnswerRe: i wand to display the image caruser over a windows form, how can i do this??? PinmemberDaveCS22 Aug '11 - 5:56 
Questiontroubleshoot Carousel Pinmemberpicasso213 Aug '11 - 7:08 
AnswerRe: troubleshoot Carousel PinmemberDaveCS18 Aug '11 - 21:59 
QuestionGet photots and load dynamically PinmemberRaibeart12 Jul '11 - 10:20 
AnswerRe: Get photots and load dynamically PinmemberDaveCS18 Aug '11 - 22:04 
QuestionRotating Carousel Verticaly PinmemberArkady Geltzer8 Jul '11 - 9:03 
GeneralMy vote of 5 PinmemberDaveCS14 Apr '11 - 23:44 
GeneralMy vote of 5 Pinmembergilbertblanco8 Jan '11 - 6:33 
GeneralMy vote of 1 Pinmemberra3doa6 Dec '10 - 2:40 
GeneralRe: My vote of 1 PinmvpMarcelo Ricardo de Oliveira4 Jan '11 - 23:51 
GeneralRe: My vote of 1 PinmemberDaveCS18 Aug '11 - 22:09 
GeneralAdd image with URL [modified] PinmemberSunProphit4 Aug '10 - 10:50 
GeneralRe: Add image with URL Pinmembercokkiy7 Aug '10 - 21:02 
GeneralRe: Add image with URL PinmemberSunProphit8 Aug '10 - 4:03 
GeneralThank You PinmemberKing Coffee30 Jun '10 - 11:47 
GeneralGreat job , Thank you For Sharing PinmemberMDHN30 Jun '10 - 9:23 
Questioncan we replace images with silverlight chart control? Pinmembermallipeddihemanth11 Jun '10 - 0:11 
AnswerRe: can we replace images with silverlight chart control? Pinmembercokkiy7 Aug '10 - 21:07 
GeneralSystem Argument Exception: Value does not fall within expected range at System.Window.Size Pinmemberzameer2119 Apr '10 - 5:21 
GeneralRe: System Argument Exception: Value does not fall within expected range at System.Window.Size PinmemberGoaGeK11 May '10 - 0:02 
GeneralThe working example version link doesn't work Pinmemberskbergam3 Apr '10 - 8:09 
GeneralRe: The working example version link doesn't work Pinmembercokkiy7 Aug '10 - 21:03 
GeneralNice one PinmemberKunalChowdhury23 Mar '10 - 16:59 
QuestionAwesome job Pinmemberkronos1917 Mar '10 - 10:20 
GeneralGreat Job in Silverlight. deserve 5 rate'G. Pinmembersantosh d3 Mar '10 - 0:59 
QuestionGreat Article Pinmemberrgturner31 Jan '10 - 17:40 
GeneralStart in Full Screen Pinmemberarkalum19 Jan '10 - 5:37 
GeneralThe page is blank from second time run Pinmembermadhanprabu8 Nov '09 - 19:36 
GeneralRe: The page is blank from second time run Pinmembercokkiy10 Nov '09 - 0:12 
GeneralReplacing Uri (ImageSource) with Memorystream PinmemberFLIron16 Oct '09 - 4:47 
GeneralRe: Replacing Uri (ImageSource) with Memorystream Pinmembercokkiy16 Oct '09 - 5:48 
GeneralRe: Replacing Uri (ImageSource) with Memorystream PinmemberFLIron16 Oct '09 - 10:15 
GeneralRe: Replacing Uri (ImageSource) with Memorystream PinmemberFLIron19 Oct '09 - 2:04 
Generalcarousel problem value does not fall within the expected range PinmemberPriyanka Katare21 Sep '09 - 20:42 
GeneralRe: carousel problem value does not fall within the expected range Pinmembercokkiy10 Nov '09 - 0:17 
GeneralHyperlink Images PinmemberMMRR18 Sep '09 - 11:11 
GeneralRe: Hyperlink Images PinmemberXel319 Dec '09 - 9:59 
GeneralRe: Hyperlink Images Pinmembercokkiy19 Dec '09 - 18:49 
GeneralExcellent job Pinmemberwguerram14 Sep '09 - 4:49 
GeneralMy vote of 1 PinmemberVickyC#16 Aug '09 - 12:47 
GeneralRe: My vote of 1 Pinmembersantosh d3 Mar '10 - 1:02 
GeneralAssembly<b><i>cokkiy.display.carousel</i></b> not available PinmemberMember 30053647 Aug '09 - 21:31 
GeneralRe: Assemblycokkiy.display.carousel not available Pinmembercokkiy7 Aug '09 - 22:44 
QuestionThanks for your great Carousel. But I put this display:Carousel into one frame page, error happened when navigating back to this page. Pinmemberpaynechen6 Aug '09 - 17:58 
AnswerRe: Thanks for your great Carousel. But I put this display:Carousel into one frame page, error happened when navigating back to this page. PinmemberAzy221 Feb '10 - 16:11 
GeneralWill u implement this Carousel in WPF as Panel Pinmembermadhankumar.gi2 Aug '09 - 20:10 
Generalabout chinese version Pinmembernicholas_pei2 Aug '09 - 18:00 
GeneralI run projecto, but dont show carousel in page PinmemberFelipe Oliveira30 Jul '09 - 4:08 

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 2 Aug 2009
Article Copyright 2008 by cokkiy
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid