event click carouselview xamarin

0

I have 5 images and need to activate carouselview to open a page at the moment the user clicks, but it is not working

I tried to do this

MAinCarousel.ItemSelected += (sender, args) =>
        {
            this.Navigation.PushAsync(new MyPage(int.Parse(MAinCarousel.Position.ToString())));
            listView.SelectedItem = null;
        };

This way it fires the moment I roll the carousel, I want the event when it clicks

    
asked by anonymous 07.06.2017 / 22:48

0 answers