Version

Changing the Location of the Carousel Navigation Element

The xamCarouselPanel, xamCarouselListBox™, xamDataCarousel™, and xamDataPresenter™ Carousel View controls all have a navigational element that appears in the lower-right corner of the control. You may wish to change the location of the navigational element. To do so, create a style that targets the CarouselPanelNavigator and specify setter properties for the Horizontal and Vertical alignment.

The following XAML sets the HorizontalAlignment and VerticalAlignment properties of the CarouselPanelNavigator object. This XAML should be placed in your page/window resources section.

In XAML:

<Style TargetType="{x:Type igWindows:CarouselPanelNavigator}">
        <Setter Property="HorizontalAlignment" Value="Left"/>
        <Setter Property="VerticalAlignment" Value="Top"/>
</Style>
changing the location of the carousel navigation element in xamcarousellistbox