We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

Trusted by the world’s leading companies

Syncfusion Trusted Companies

Overview

The WPF Carousel control provides navigation through a list of items with smooth animations. It allows arranging items in a user-defined path, including 3D, linear, and circular layouts. It also supports scaling and skewing the carousel items, and provides options to choose the rotation direction.


Data binding

The WPF Carousel control provides powerful data binding to display data and supports binding for different types of data sources. It allows users to design the application in MVVM pattern, such as binding selected item.

WPF Carousel itemssource binding


Custom shape

Displays data in any shape, such as an ellipse or card, through a data template. Users can design their own shapes for item in the Carousel control.

WPF Carousel displays data in rectangular shape cards


Looping items

Carousel has looping functionality, allowing users to loop back to the first item after reaching the last item.


Arbitrary path

Displays data in an elliptical path and provides the option to change the path radius of the x-axis and y-axis. Users can customize this path to arrange items in any form, such as a 3D perspective, circular, and linear layouts. The control allows users to design a flexible layout based on their application needs.

WPF Carousel displays data in circular manner


Scale view

Supports scaling the objects in the carousel path and allows users to change the scale fraction as needed.

WPF Carousel scale the objects


Selection

Allows users to select an object through mouse or touch interaction. The WPF Carousel moves the newly selected object to the top of the view with smooth animation.

WPF Carousel bring the selected object to top of view


Animation

Provides elegant animation on selecting objects and allows user to control the animation speed.

WPF Carousel animate the objects on selection


Rotate view

Provides built-in support to rotate the carousel path to a specific angle.

WPF Carousel displays data in specific rotation angle


Right to left

Right-to-left (RTL) direction is available for users working in right-to-left languages like Hebrew, Arabic, or Persian.

WPF Carousel displays content in right to left


Easily get started with the WPF Carousel using a few simple lines of XAML and C# code example as demonstrated below. Also explore our WPF Carousel Example that shows you how to render and configure the Carousel in WPF.

<syncfusion:Carousel x:Name="carousel">
        <syncfusion:CarouselItem Content="Item1"/>
        <syncfusion:CarouselItem Content="Item2"/>
        <syncfusion:CarouselItem Content="Item3"/>
        <syncfusion:CarouselItem Content="Item4"/>
        <syncfusion:CarouselItem Content="Item5"/>
    </syncfusion:Carousel>
public MainWindow()
{
InitializeComponent();
var carousel = new Carousel();
carousel.Name = "carousel";
carousel.Items.Add(new CarouselItem() { Content = "Item1" });
carousel.Items.Add(new CarouselItem() { Content = "Item2" });
carousel.Items.Add(new CarouselItem() { Content = "Item3" });
carousel.Items.Add(new CarouselItem() { Content = "Item4" });
carousel.Items.Add(new CarouselItem() { Content = "Item5" });
this.Content = carousel;
}

95+ WPF CONTROLS

Our Customers Love Us

Having an excellent set of tools and a great support team, Syncfusion reduces customers’ development time.
Here are some of their experiences.

Rated by users across the globe

Transform your applications today by downloading our free evaluation version Download Free Trial

Syncfusion WPF Resources

Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.

Up arrow icon
Live Chat Icon For mobile