This question is locked. New answers and comments are not allowed.
I'm using stream images and an ItemTemplate to display thumbnails for documents retrieved from a service. What I have is this:
All my images show up and it looks great. The problem I'm having is that clicking on various items to the left and the right doesn't change the selection. Once it's loaded it might as well be a static rendering because it does absolutely nothing. Any idea what I'm missing?
<Grid Height="150"> <telerik:RadCoverFlow ItemsSource="{Binding Thumbnails}" x:Name="DocumentCoverFlow" OffsetY="25" CameraViewpoint="Center" ItemScale="0.75" RotationY="60" ReflectionHeight="0.25" ReflectionOpacity="3" DistanceBetweenItems="20" DistanceFromSelectedItem="-5" > <telerik:RadCoverFlow.ItemTemplate> <DataTemplate> <Image Source="{Binding}" Width="100" Height="100" Stretch="Uniform" telerik:RadCoverFlow.EnableLoadNotification="False"></Image> </DataTemplate> </telerik:RadCoverFlow.ItemTemplate> </telerik:RadCoverFlow></Grid>All my images show up and it looks great. The problem I'm having is that clicking on various items to the left and the right doesn't change the selection. Once it's loaded it might as well be a static rendering because it does absolutely nothing. Any idea what I'm missing?