Click here to Skip to main content
Licence CPOL
First Posted 13 Nov 2011
Views 6,059
Downloads 1,127
Bookmarked 21 times

Simple Carousel Control for Windows Forms

By | 24 Apr 2012 | Article
Simple Carousel Control for Windows Forms, can host any content with in views.
Carousel_WinForm/Preview.png

Introduction     

Its always fun to create something elegant and interactive, and Carousel is the best example to present contents this way. I guess telerik is the only vendor to offer Carousel control for Windows Forms, and that's why Carousel in window forms, with WPF we can achieve a more elegant transitions and a better rendering, and code project has 2D and 3D carousels in WPF.  

Background  

Transitions in this article is handled by the use of IntAnimation in my previous article, it is recommended to take a look at the Animate Properties in Windows Forms before beginning with the carousel control. 

Using the code 

View :  

Every item visible in the  Carousel is a View, and is derived from Panel therefore can host any content.

Carousel: 

Carousel is derived from Control, and has these following public members.

ActiveView :  A reference to the active View.

ViewMargin  : Gets or sets the space between the Carousel and the Views.

ViewOffset : Gets or sets the spacing between adjacent views. 

ViewPortItemsCount : Gets or sets the number of Views visible within view port. 

Views : Gets or sets the views associated with the Carousel. 

Adding Views 

By clicking the ellipsis button available in the Views property for the Carousel 'View Collection Editor' can be invoked and you can add views to the carousel. Carousel produces best look and feel with the odd number of views.  

How It works     

Carousel operates on very simple principle, Views are laid out with in the view port, and the view in the middle is initialized as active, 

 Carousel_WinForm/Representation.png

Assume the views are in circular list (Literally are in CircularList) , when a view is activated other views are shifted to the left / right depending on the relative position with the active view. 

 Carousel_WinForm/Representation1.png

This transition is handled with the help of IntAnimation as follows.

IntAnimation Xanimation = new IntAnimation
			{
			 By = 1,
			 Interval = 1,
			 Duration = animOffset * 10,
			 From = view.Left,
			 To = animOffset,
			};

view.Animate("Left", Xanimation);

History   

24 Apr, 2012 - Amended. Removed leading spaces from paragraphs.

14 Nov,2011 - Initial Post. This article is just to open up the world of possibilities with the Animation Framework,  This version of Carousel is a simple implementation, do let me know if you have any requirements to be added further.

 Happy Coding!!! 

License

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

About the Author

VallarasuS

Software Developer

India India

Member

Follow on Twitter Follow on Twitter
I code!

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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 2 PinmvpSacha Barber4:47 30 Nov '11  

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
Web02 | 2.5.120517.1 | Last Updated 24 Apr 2012
Article Copyright 2011 by VallarasuS
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid