Version

About CarouselView

You can use the CarouselView class in conjunction with xamDataPresenter™ to present Records along a specified Path just like the xamDataCarousel™ control. The CarouselView class and the xamDataCarousel control both share a common CarouselViewSettings object that controls their behavior; therefore, any topic for xamDataCarousel ViewSettings will also apply to a xamDataPresenter control using a CarouselView object.

In XAML:

<igDP:XamDataPresenter Name="xamDataPresenter1" BindToSampleData="True">
        <igDP:XamDataPresenter.View>
        <!--
        <igDP:XamDataCarousel.ViewSettings>
                <igWindows:CarouselViewSettings IsListContinuous="True" />
        </igDP:XamDataCarousel.ViewSettings>
        -->
        <!-- Replace the preceding commented markup with the CarouselView markup -->
                <igDP:CarouselView>
                        <igDP:CarouselView.ViewSettings>
                                <igWindows:CarouselViewSettings IsListContinuous="True" />
                        </igDP:CarouselView.ViewSettings>
                </igDP:CarouselView>
        </igDP:XamDataPresenter.View>
</igDP:XamDataPresenter>
example of xamdatapresenter's carousel view