I am using an Xamarin.Forms.Picker control and handling the SelectedIndexChanged event.
The user scrolls thru the items in the picker control then the user selects the "Done" button that is prebuilt into the picker control. Is there anyway to capture when the user presses "Done" instead of when the index changes.
The index can change multiple times as the user scrolls thru the items and I don't want to handle unnecessary events as I only care about the last item selected.
Thanks in advance
<Picker x:Name="PickerMinStars" Title="Min number of 5 stars" SelectedIndexChanged="Handle_PickerStarsSelectedIndexChanged">
</Picker>