This question is locked. New answers and comments are not allowed.
I've tried to use this control.
This is my Xaml:
This is my C#:
When I try to type "one", the AutoCompleteBox gets me this: one0, one1,one12,one13
then when I continue and type "one1", it gets me this: one1, one12, one13
Where is the "one14"?
Is that a bug or something? Am I missing something here?
This is my Xaml:
<toolkit:RadAutoCompleteBox x:Name="RAD" Height="80" />This is my C#:
List<string> queries = new List<string>();queries.Add("one0"); queries.Add("one1"); queries.Add("one12"); queries.Add("one13"); queries.Add("one14");RAD.SuggestionsSource = queries;When I try to type "one", the AutoCompleteBox gets me this: one0, one1,one12,one13
then when I continue and type "one1", it gets me this: one1, one12, one13
Where is the "one14"?
Is that a bug or something? Am I missing something here?