[UWP] Fixes the search bar query, when you type text quickly (#2472) fixes #2439

This commit is contained in:
Pavel Yakovlev 2018-04-30 14:37:47 +03:00 коммит произвёл Rui Marinho
Родитель 9e30a33899
Коммит a981e4cf99
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -102,6 +102,11 @@ namespace Xamarin.Forms.Platform.UWP
void OnQuerySubmitted(AutoSuggestBox sender, AutoSuggestBoxQuerySubmittedEventArgs e)
{
// Modifies the text of the control if it does not match the query.
// This is possible because OnTextChanged is fired with a delay
if (e.QueryText != Element.Text)
Element.SetValueFromRenderer(SearchBar.TextProperty, e.QueryText);
Element.OnSearchButtonPressed();
}