4 Answers, 1 is accepted
You may take a look at the following onlihe help article for further info "Change the predefined scroll buttons".
Vanya Pavlova
the Telerik team

I'm trying to apply the changes I saw in the article you referred to me but the buttons never show up :( I can see an empty space for Row="0" of the grid but no buttons are visible :(
Here is the code:
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30" />
<RowDefinition />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Center">
<telerik:CarouselScrollButton x:Name="UnsignCtxCarouselPageDownButton" CarouselScrollButtonType="PageLeft" Click="UnsignCtxCarouselPageDownButton_Click" />
<telerik:CarouselScrollButton x:Name="UnsignCtxCarouselPageLeftButton" CarouselScrollButtonType="LineUp" Click="UnsignCtxPageCarouselLeftButton_Click" />
<telerik:CarouselScrollButton x:Name="UnsignCtxCarouselPageRightButton" CarouselScrollButtonType="LineDown" Click="UnsignCtxCarouselPageRightButton_Click" />
<telerik:CarouselScrollButton x:Name="UnsignCtxCarouselPageUpButton" CarouselScrollButtonType="PageRight" Click="UnsignCtxCarouselPageUpButton_Click" />
</StackPanel>
<telerik:RadCarousel Grid.Row="1" Name="UnsignCtxDocsCarousel" MouseRightButtonDown="SignCtxDocsCarousel_MouseRightButtonDown" VerticalScrollBarVisibility="Hidden" HorizontalScrollBarVisibility="Auto" IsSynchronizedWithCurrentItem="True">
<telerik:RadCarousel.ItemsPanel>
<ItemsPanelTemplate>
<telerik:RadCarouselPanel Path="{StaticResource horizontalPath}"/>
</ItemsPanelTemplate>
</telerik:RadCarousel.ItemsPanel>
</telerik:RadCarousel>
</Grid>
Thank's
I have tried to reproduce the issue you reported, but unfortunately without any success. May you take a look at the sample attached to verify whether there are any discrepancies when compared to your scenario ?
Maya
the Telerik team

Thank's