如果我正在使用以下类型的代码,则不会触发WPF comboBox的SelectionChanged事件

cmbFunctionsList.Items.Add("sameItem");
cmbFunctionsList.Items.Add("sameItem");
cmbFunctionsList.Items.Add("sameItem");
cmbFunctionsList.Items.Add("sameItem");
cmbFunctionsList.Items.Add("sameItem");


有没有解决的办法。

最佳答案

尝试这样做:

ComboBoxItem newItem = new ComboBoxItem();
newItem.Content = "same item";
cmbFunctionsList.Items.Add(newItem);


取自here的想法

关于c# - 如果WPF comboBox中的SelectionChanged事件包含相同项,则不会触发,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7738899/

10-16 06:24