How to perform an operation while changing the carouselItem?
30 Jun 2017 / 1 minute to read
We can perform operation while changing the carouselItem using SelectionChanged
event. SelectionChanged event returns the index changed SfCarouselItem.
carousel.SelectionChanged += (object sender, SfCarousel.SelectionChangedEventArgs e) =>
{
};
How to perform an operation while changing the collection of carousel?
30 Jun 2017 / 1 minute to read
We can perform operation while changing the collection of carousel using ItemsCollectionChanged
event. ItemsCollectionChanged event returns changed collection of SfCarouselItem
carousel.ItemsCollectionChanged += (object sender SfCarousel.ItemsCollectionChangedEventArgs e) =>
{
};
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page