all! I was looking for the best I could, and did not find exactly what help I was looking for.
Problem
AutoCompleteTextbox FREEZES and "eats" characters at query time
Inquiry
Google Instant Expression Feature
Background
First things: C #, WPF, .NET 4.0
Well, now, aside, I'm trying to find a better way to implement dynamic autocomplete text field, which queries the database for the results after each letter entered.
The following code is fired on an AutoCompleteTextBox TextChanged event:
public void Execute(object sender, object parameter)
{
var autoCompleteBox = sender as AutoCompleteTextBox;
var e = parameter as SearchTextEventArgs;
var result = SearchUnderlyings(e.SearchText);
autoCompleteBox.ItemsSource = result;
}
, SearchUnderlyings(e.SearchText) 600-1100 - "" . , . - LINQ SearchUnderlyings(e.SearchText) . , .
, , Google Instant, "" , / .
- , GUI ?
, !