<igDP:XamDataPresenter.View> <igDP:CarouselView> <igDP:CarouselView.ViewSettings> <igWindows:CarouselViewSettings IsListContinuous="True" /> </igDP:CarouselView.ViewSettings> </igDP:CarouselView> </igDP:XamDataPresenter.View>
You can navigate right or left in xamDataPresenter’s™ Records collection till the last Record available in the list is still visible. You can also navigate continuously through the collection by setting the IsListContinuous property to True.
For a continuous list, use the following code.
In XAML:
<igDP:XamDataPresenter.View> <igDP:CarouselView> <igDP:CarouselView.ViewSettings> <igWindows:CarouselViewSettings IsListContinuous="True" /> </igDP:CarouselView.ViewSettings> </igDP:CarouselView> </igDP:XamDataPresenter.View>
Replace the code inside the XamDataPresenter tag in Adding xamDataPresenter to Your Application, with the above code to view this functionality.