Version

IsListContinuous Property (CarouselViewSettings)

Returns true if the XamCarouselPanel should wrap around to the beginning of the list and display the first list item after the last item is displayed. The default is False.
Syntax
'Declaration
 
Public Property IsListContinuous As Boolean
public bool IsListContinuous {get; set;}
Remarks

Note: When this property is set to true and the total number of items in the list is less than the number of ItemsPerPage, page scrolling is disabled and line scrolling does not wrap to the other end of the list.

The CarouselPanelItem and CarouselListBoxItem objects which wrap each item in the list, expose 2 properties: IsFirstItem and IsLastItem, which you can use in a replacement Template for those objects to highlight the first and last items in the list when IsListContinuous is set to true. This makes it easier for the end user to tell when they have scrolled back to the beginning of the list.

Note: The default styles for the CarouselPanelItem and CarouselListBoxItem objects do not highlight the first and last items.

Example
In this example, the IsListContinuous is set to true so that when you attempt to scroll such that you would go beyond the beginning or end of the list that you would see the last or first items again respectively.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>

        
<igWindows:CarouselViewSettings 
            
IsListContinuous="True"
            
ItemPathRenderBrush="#77000000" />

    
</igWindows:XamCarouselPanel.ViewSettings>

    
<Ellipse Width="50" Height="50" Stroke="Black" Fill="Red" />
    
<Ellipse Width="100" Height="50" Stroke="Black" Fill="Green" />
    
<Polygon Points="0, 25, 25, 0, 75, 0, 100, 25, 75, 50, 25, 50" Stroke="Black" Fill="Yellow" />
    
<Rectangle Width="100" Height="50" Stroke="Black" Fill="Purple" />
    
<Polyline Points="0, 25, 25, 0, 50, 25, 25, 50, 0, 25" Stroke="SlateGray" StrokeThickness="2" Fill="Blue"/>
    
<Path Stroke="Black" Fill="Gray" Data="M 10,10 C 10,100 100,-100 100,10" />
</igWindows:XamCarouselPanel>
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also