How to perform an operation while changing the carouselItem?
30 Jun 20171 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 20171 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) =>
{
};