This question is locked. New answers and comments are not allowed.
I have the following transition control:
I set the DataContext that control is set to is correctly changing images every 30 seconds by deriving from iNotifyPropertyChanged on the ChartURI property.
So the chart correct is changing, but I don't see any animations happening.
Any idea why?
<telerik:RadTransitionControl x:Name="lrTransitionControl" HorizontalAlignment="Center" VerticalAlignment="Center" Duration="00:00:00.400"> <telerik:RadTransitionControl.Transition> <telerikTransitions:MotionBlurredZoomTransition /> </telerik:RadTransitionControl.Transition> <telerik:RadTransitionControl.Content> <Image Source="{Binding ChartURI}" Stretch="Uniform" /> </telerik:RadTransitionControl.Content> </telerik:RadTransitionControl> I set the DataContext that control is set to is correctly changing images every 30 seconds by deriving from iNotifyPropertyChanged on the ChartURI property.
So the chart correct is changing, but I don't see any animations happening.
Any idea why?