Im Quellcode von AutoCompleteBox (zum Herunterladen von Microsoft) auf null Einstellung fand ich folgendes:Silverlight 4 AutoCompleteBox, SelectedItem
/// <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)
{
string text;
if (newItem == null)
{
text = SearchText;
}
else
{
text = FormatValue(newItem, true);
}
// Update the Text property and the TextBox values
UpdateTextValue(text);
// Move the caret to the end of the text box
if (TextBox != null && Text != null)
{
TextBox.SelectionStart = Text.Length;
}
}
Was mich stört ist {text = Suchtext;} Linie. Wenn ich SelectedItem an mein ViewModel anhefte und nach einem Sucheintrag in die AutoCompleteBox, ist SearchText nicht leer, und wenn die zugrunde liegenden Daten auf Null zurückgesetzt werden, zeigt AutoCompleteBox möglicherweise SearchText anstelle einer leeren Zeichenfolge an. Kann jemand erklären, warum es so geschrieben ist, und einen Workaround vorschlagen?
Danke, dass Sie mich in die richtige Richtung weisen. –