This question is locked. New answers and comments are not allowed.
I am trying to prevent cover flow from cahcing images.
I have the following coverflow:
<telerikNavigation:RadCoverFlow x:Name="CoverFlow" Height="Auto" Width="980" >
<telerikNavigation:RadCoverFlow.ItemTemplate>
<DataTemplate>
<Image Source="{Binding}" Stretch="None" telerikNavigation:RadCoverFlow.EnableLoadNotification="True" />
</DataTemplate>
</telerikNavigation:RadCoverFlow.ItemTemplate>
</telerikNavigation:RadCoverFlow>
And am binding it to a collection of string in code:
var images = new ObservableCollection<string>();
foreach (var imageURL in e.Result)
{
images.Add(imageURL);
}
CoverFlow.ItemsSource = images;
was thinking of just adding ?rn=randomnumber at the end of each.
Anything more standard that i can do to prevent the caching?
Thanks
Anything more standard that i can do to prevent the caching?
Thanks