ComboBox.SelectionChanged doesn't catch the first selection
- by trnTash
I need to fill textboxes depending on the item selected in a combobox. I fill combo async and in Completed event I have the following code
combo.ItemsSource = e.Result;
combo.DisplayMemberPath = "Name";
combo.SelectedIndex = -1;
Then in the SelectionChanged event of the combo, I catch the selected object
MyClass mc=…