Hello syncfusion,
I have a question regarding on your WPF Carousel. Can support the mouse wheel (for spinning-for browsing) and select the item on enter or click.
I did a workaround to suport the mouse wheel for spining :
if ( mouseWheel spin towards monitor)
{
carousel.selectedIndex+1;
}
else
{
carousel.SelectedIndex -1;
}
But with this workaround is automatically changing the item, and i want to select the item by click on enter.
Regards,
Lucian.