This question is locked. New answers and comments are not allowed.
when i use CoverFlow with databinding, the items are flickering the first time they appear on screen. it does not happen all the time, but most of the time. (when i use CoverFlow without databinding everything works fine).
here is the code
any solution?
here is the code
<riaControls:DomainDataSource x:Name="domainDataSource" AutoLoad="True" QueryName="GetUsers" LoadedData="DomainDataSourceLoadedData"> <riaControls:DomainDataSource.DomainContext> <Services:RichrachDomainContext /> </riaControls:DomainDataSource.DomainContext> </riaControls:DomainDataSource> <telerik:RadCoverFlow x:Name="cvr" Grid.Row="1" ItemsSource="{Binding Data, ElementName=domainDataSource}" VerticalAlignment="Center" ItemChangeDelay="0:0:2" FlowDirection="RightToLeft" Margin="10,0" ItemScale="0.75" IsReflectionEnabled="False" DistanceBetweenItems="75" DistanceFromSelectedItem="25" RotationY="45"> <telerik:RadCoverFlow.EasingFunction> <CubicEase EasingMode="EaseInOut" /> </telerik:RadCoverFlow.EasingFunction> <telerik:RadCoverFlow.ItemTemplate> <DataTemplate> <telerik:RadCoverFlowItem Height="160" MouseLeftButtonUp="RadCoverFlowItem_MouseLeftButtonUp"> <StackPanel Background="{StaticResource RichrachBrush}" Height="120" VerticalAlignment="Center"> <TextBlock Text="{Binding UserName}" Height="20"></TextBlock> </StackPanel> </telerik:RadCoverFlowItem> </DataTemplate> </telerik:RadCoverFlow.ItemTemplate> </telerik:RadCoverFlow>any solution?