autocompletebox

Refresh the input text of an AutoCompleteBox

Hello, I have an AutoCompleteBox whose ValueMemberBinding uses a ValueConverter : ValueMemberBinding="{Binding Converter={StaticResource MyValueConverter}}" This ValueConverter uses a global property to convert the value. When I change this global property I'd like the AutoCompleteBox displayed strings to update accordingly. For ins...

Silverlight 4 AutoCompleteBox, setting SelectedItem to null

In the source code of AutoCompleteBox (downloadable from Microsoft) I found the following: /// <summary> /// Called when the selected item is changed, updates the text value /// that is displayed in the text box part. /// </summary> /// <param name="newItem">The new item.</param> private void OnSelectedItemChanged(object newItem) { st...