Simple Carousel Control for Windows Forms






3.33/5 (7 votes)
Simple Carousel Control for Windows Forms, can host any content with in views.

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,
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.
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!!!