private void SearchComboBox_OnKeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.Enter && SelectedItem != null) { SelectionConfirmed?.Invoke(this, e); } }
private void PART_EditableTextBox_OnLostFocus(object sender, RoutedEventArgs e) { Console.WriteLine(@"lost focus"); Dispatcher.BeginInvoke(new Action(() => SearchComboBox.IsDropDownOpen = false)); if (SelectedItem != null) { SelectionConfirmed?.Invoke(this, e); } }