please try If you click the find icon you will set the itemsSource and then you tap a blank in the textbox there will show the list and you click one then there is nothing
I can reproduce it.
you click one then there is nothing
I debugged and found that the click doesn't trigger the AutoSuggestBox.SuggestionChosen Event which could include a default function to set the AutoSuggestBox.Text.
As a workaround indicated by the example, you can set it directly in AutoSuggestBox.QuerySubmitted for this condition.
private void AutoSuggestBox_QuerySubmitted(AutoSuggestBox sender, AutoSuggestBoxQuerySubmittedEventArgs args)
{
//sender.SuggestionChosen += AutoSuggestBox_SuggestionChosen;
if (args.ChosenSuggestion != null)
{
sender.Text = args.ChosenSuggestion.ToString();
}
}