This question is locked. New answers and comments are not allowed.
Since RadSlideView does not implement SelectedIndex, I'd like to know how I could actually retrieve the currently SelectedItem from the TextBlock which contains my the ID for the selected item.
<telerikPrimitives:RadSlideView Grid.Row="0" x:Name="slideView" ItemsSource="{Binding AllSource}" AdjacentItemsPreviewMode="Both" ItemTemplate="{StaticResource SlideViewItemTemplate}" SelectionChanged="slideView_SelectionChanged" /> <StackPanel Grid.Row="1" Margin="52,20,24,12"> <TextBlock Text="{Binding ElementName=slideView,Path=SelectedItem.ID}" FontSize="{StaticResource PhoneFontSizeExtraLarge}" FontFamily="{StaticResource PhoneFontFamilySemiLight}" TextWrapping="Wrap"/> </StackPanel>Any pointer in the right direction would be welcome.
Thanks,
Alain