This question is locked. New answers and comments are not allowed.
Hello,
Iam running into a major issue:
I have a coverflow:
<telerik:RadCoverFlow OffsetY="60" OffsetX="0" Opacity="0" Height="200" ItemsSource="{Binding}" x:Name="Cover" ReflectionHeight="0.25" > <telerik:RadCoverFlow.Resources> <Style TargetType="telerik:RadCoverFlowItem"> <Setter Property="telerik:RadDragAndDropManager.AllowDrag" Value="True"></Setter> </Style> </telerik:RadCoverFlow.Resources> <telerik:RadCoverFlow.ItemTemplate> <DataTemplate x:Name="cfDataTemplate"> <Image Source="{Binding ObtainedImage}" x:Name="cvrImage" Width="174" Height="230" Stretch="UniformToFill" telerik:RadCoverFlow.EnableLoadNotification="True" /> </DataTemplate> </telerik:RadCoverFlow.ItemTemplate> </telerik:RadCoverFlow>
and I have a ObservableCollection<Slide> AsthmaImages, where slide is an object that stores the following objects:
public class Slide { public Slide() {
}
public BitmapImage ObtainedBitmap { get; set; } public Image ObtainedImage { get; set; } }
Now Iam binding the observable collection to the cover flow by setting the item source property:
Cover.ItemSource = AsthmaImages;
But the images dont show up in the cover flow and it shows the loading rotator. I would like to add that these are in-memory images which are received through WCF services. I have tried the workarounds given in different threads but none of them seem to work. I know its not firind the loaded event thats why it shows that loader. Please help.
Thanks in advance