Mini Kabibi Habibi
<Page x:Class="CarouselTutorial.TutorialPage5"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dxca="http://schemas.devexpress.com/winfx/2008/xaml/carousel"
>
<DockPanel>
<dxca:CarouselNavigator DockPanel.Dock="Bottom" Carousel="{Binding ElementName=carousel}" Width="300" Height="24" />
<dxca:CarouselPanel DockPanel.Dock="Top" IsRepeat="False" Name="carousel" PathPadding="20" VisibleItemCount="3" AttractorPointIndex="1" ActivateItemOnClick="False">
<dxca:CarouselPanel.Resources>
<Style TargetType="{x:Type Rectangle}" BasedOn="{StaticResource {ComponentResourceKey TypeInTargetAssembly={x:Type dxca:CarouselPanel}, ResourceId=advancedCarouselItemStyle}}" />
</dxca:CarouselPanel.Resources>
<dxca:CarouselPanel.ItemMovingPath>
<PathGeometry Figures="M0,0L50,0" />
</dxca:CarouselPanel.ItemMovingPath>
<Rectangle Fill="Blue" />
<Rectangle Fill="Blue" />
<Rectangle Fill="Blue" />
<Rectangle Fill="Blue" />
<Rectangle Fill="Blue" />
</dxca:CarouselPanel>
</DockPanel>
</Page>