Following your examples, I am trying to set PathStops. No matter what I do to the PathFraction and Values, I still get the default behavior (center item is biggest, items fade out to the left and right). I tried setting IsScalingEnabled="True" IsOpacityEnabled="True" on my RadCarouselPanel, but it has no effect. I also tried setting TopItemPathFraction in the Properties window and I get an unhandled exception "Object reference not set to an instance of an object.". I also found OverridesDefaultStyle, but that doesn't do anything for me. Can you help?
Also, do you have a list of all the properties and what they mean?
Also, do you have a list of all the properties and what they mean?
| <ListBox x:Name="lstThumbsCarousel" Grid.Row="2" ItemContainerStyle="{DynamicResource ThumbNailContainerStyle}" MouseRightButtonUp="ShowContextMenu" SelectionChanged="lstThumbsCarousel_SelectionChanged" Loaded="lstThumbsCarousel_Loaded"> |
| <ListBox.ItemsPanel> |
| <ItemsPanelTemplate> |
| <telerik:RadCarouselPanel x:Name="radCarouselPanel"> |
| <telerik:RadCarouselPanel.ScaleStops> |
| <telerik:PathStopCollection> |
| <telerik:PathStop PathFraction="0.0" Value="0.1" /> |
| <telerik:PathStop PathFraction="0.47" Value="0.2" /> |
| <telerik:PathStop PathFraction="0.5" Value="0.4" /> |
| <telerik:PathStop PathFraction="0.53" Value="0.8" /> |
| <telerik:PathStop PathFraction="1.0" Value="1.0" /> |
| </telerik:PathStopCollection> |
| </telerik:RadCarouselPanel.ScaleStops> |
| </telerik:RadCarouselPanel> |
| </ItemsPanelTemplate> |
| </ListBox.ItemsPanel> |
| </ListBox> |