Version

IsNavigatorVisible Property

Returns/sets whether the CarouselPanelNavigator is visible. The default is True.
Syntax
'Declaration
 
Public Property IsNavigatorVisible As Boolean
public bool IsNavigatorVisible {get; set;}
Remarks

The CarouselPanelNavigator provides a UI for navigating through the list of items in the Carousel. It displays buttons that execute XamCarouselPanelCommands when clicked to scroll items. If you want to provide your own UI for scrollig items, you can hide the CarouselPanelNavigator by setting this property to hidden and then creating a UI that executes the same scrolling commands used by the navigator.

Example
In this example, the IsNavigatorVisible is set to false so that the item navigator is not displayed. This is useful in this situation since it is known that all the items can be in view at one time. Likewise, the ShouldScrollItemsIntoInitialPosition has been set to false so that the items are not scrolled into view when the panel is first displayed.
<igWindows:XamCarouselPanel>
    
<igWindows:XamCarouselPanel.ViewSettings>

        
<igWindows:CarouselViewSettings 
                
IsNavigatorVisible="False" 
                
ShouldScrollItemsIntoInitialPosition="False"/>

    
</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" />
</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