BH>var list = (List<string>) myComboBox.ItemsSource; BH>myComboBox.Text = (list).Where(n => n.StartsWith(myComboBox.Text)).Single(); BH>