hi.
i know it's a stupid question but i couldn't solve. is there any way to catch the clicked item on xamcarouselpanel?
We use the RecordActivated event
Hi,You can try to register MouseDownEvent instead of Click event for the CarouselPanelItem class.
public Window1(){ InitializeComponent(); //register the event EventManager.RegisterClassHandler (typeof (CarouselPanelItem), CarouselPanelItem.MouseDownEvent, new MouseButtonEventHandler(OnCarouselPanelItemMouseDown));}
//your event handlerprivate static void OnCarouselPanelItemMouseDown(object sender, MouseButtonEventArgs e){ }
Regards
Vlad