You will need to identify the item that contains the text from the TextBox, and set the item as the SelectedItem.
e.g.:
foreach( ComboBoxItem item in winComboBox1.Items )
{
if( item.Values.Contains( textBox1.Text ) )
{
winComboBox1.SelectedItem = item;
break;
}
}
Imported from legacy forums. Posted by André (had 2579 views)