en fait y'a un truc simple pour les mise a jour des combo quand ca change
tu fais
pour leCode:
1
2
3
4
5
6 object s = this.combobox.SelectedItem; IEnumerable o = this.combobox.ItemsSource; this.combobox.ItemsSource = new list<object>(); this.combobox.ItemsSource = o; this.combobox.SelectedItem = s;
on pourrait mettre nul mais l'experience fait que dans certains cas ca marche pas trop bienCode:this.combobox.ItemsSource = new list<object>();