I'm trying to use the standard AutoSuggestBox in the XAML app for Windows Phone 8.1, but it behaves very weird.
In a simple demo, I have a collection
Items = new ObservableCollection<string> { "a", "b", "c", "d" };
and he has an AutoSuggestBox in XAML:
<AutoSuggestBox ItemsSource="{Binding Items}" />
The problem is that no matter what I write in the AutoSuggestBox , I always get all the elements:

The documentation says almost nothing, and I did not find any samples using this control.
source share