ComponentOne Extender Controls for ASP.NET Web Forms
Wijmo Control Toolkit Extender Controls / C1Carousel Extender / C1Carousel Extender Tutorial / Step 3 of 4: Customizing the Carousel
In This Topic
    Step 3 of 4: Customizing the Carousel
    In This Topic

    In this topic you will set some of the properties for the C1CarouselExtender to change the number of images shown in the carousel at one time.

    1. Select View | Properties Window in the Visual Studio menu.
    2. Click the drop-down list at the top of the Properties window and select Panel1_C1CarouselExtender.
    3. Set the C1CarouselExtender.Display property to 2. In the application, two images will be shown at a time.
    4. Set the C1CarouselExtender.AutoPlay property to True. This will loop through the images automatically.

    The markup for the C1CarouselExtender will now look like this:

    <cc1:C1CarouselExtender ID="Panel1_C1CarouselExtender" runat="server" Display="2" TargetControlID="Panel1" AutoPlay="True">

        </cc1:C1CarouselExtender>

    Now run the project to see the carousel of images.