if i m using following type of code then SelectionChanged Event of WPF comboBox is not firing
cmbFunctionsList.Items.Add("sameItem");
cmbFunctionsList.Items.Add("sameItem");
cmbFunctionsList.Items.Add("sameItem");
cmbFunctionsList.Items.Add("sameItem");
cmbFunctionsList.Items.Add("sameItem");
Is there any work around of this.
Try doing this:
Idea taken from here