Each letter you type appears a white ball in the middle of the app (by the way it is updating the list), I wish I could not have it.
The error:
The code:
//Pesquisa localmente a cada letra digitada
private void OnTextChanged(object sender, TextChangedEventArgs e)
{
//Letra Maiúscula
MainSearchBar.Text = MainSearchBar.Text.ToUpper();
//Pesquisa a cada dígito
lstProduto.BeginRefresh();
if (string.IsNullOrWhiteSpace(e.NewTextValue))
{
lstProduto.ItemsSource = produtos;
}
else
{
lstProduto.ItemsSource = produtos.Where(i => i.DESCRICAO.Contains(e.NewTextValue));
}
lstProduto.EndRefresh();
}