When the page is transitioning out after a selection, it is possible to click on another item in the list, and that one ends up as selected. Surely the control should be disabled after the transition has begun.
Comments: ** Comment from web user: wieser_software **
Comments: ** Comment from web user: wieser_software **
The fix is to modify ClosePickerPage thus:
private void ClosePickerPage()
{
IsOpen = false;
// AAW: disable picker on exit.
Picker.IsEnabled = false;
}