How do I remove the yellow background from the selected item? Below is the current control I am using
| <telerik:RadCarousel x:Name="itemCarousel" HorizontalAlignment="Stretch" |
| VerticalAlignment="Stretch" Height="500" Width="834" HorizontalScrollBarVisibility ="Hidden" Loaded="itemCarousel_Loaded" AutoGenerateDataPresenters="True"> |
| <telerik:RadCarousel.Resources> |
| <Style x:Key="bundlePanel" TargetType="{x:Type telerik:RadCarouselPanel}" > |
| <EventSetter Event="TopContainerChanged" Handler="panel_TopContainerChanged"/> |
| <Setter Property="ItemsPerPage" Value="3"/> |
| <Setter Property="IsOpacityEnabled" Value="False"/> |
| <Setter Property="PathPadding" Value="0,0,0,100"/> |
| </Style> |
| </telerik:RadCarousel.Resources> |
| </telerik:RadCarousel> |
Thanks