Hello,
I have a problem I can´t solve: I would like to change cursor to "Hand" when user moves the mouse over any coverflow item. Presently, I only get cursor changes to hand when mouse is over the selected item. Also I can assign this cursor to the coverflow component, but it applies to all component, and I only want it for the items.
I have an item template:
<telerik:RadCoverFlow.ItemTemplate>
<DataTemplate >
<telerik:RadCoverFlowItem Cursor="Hand" >
<StackPanel x:Name="ItemStack" Width="37" Height="50" RenderTransformOrigin="0.5,0.5"
MouseLeftButtonDown="coverFlow_MouseLeftButtonDown" Cursor="Hand">
<StackPanel.Clip>
<RectangleGeometry Rect="0,0,37,50"></RectangleGeometry>
</StackPanel.Clip>
<StackPanel.RenderTransform>
<CompositeTransform/>
</StackPanel.RenderTransform >
<Border x:Name="itemBorder" Width="35" Height="35" BorderBrush="White" BorderThickness="0">
<StackPanel x:Name="stackPanelItemContent" Orientation="Vertical" >
<Grid Width="35" Height="35" Cursor="{Binding Cursor}">
<Image Source="/SLMapaRTMN;component/images/drop.png"></Image>
</Grid>
</StackPanel>
</Border>
<TextBlock x:Name="textBlockOrden" Margin="0,2,0,0" HorizontalAlignment="Center"
FontSize="12" FontFamily="Arial" Foreground="{Binding ColorFuente}" FontWeight="ExtraBold"
Text="{Binding Orden}">
</TextBlock>
</StackPanel>
</telerik:RadCoverFlowItem>
</DataTemplate>
</telerik:RadCoverFlow.ItemTemplate>
And this is the item class: