Pour ceux qui font du MVVM pur, comment gérer l'événement SelectionChanged d'une ComboBox sans revenir au code précédent ?
J'ai essayé par exemple AttachedBehaviors mais Event="SelectedChanged" n'est pas pris en charge :
<ComboBox>
<ComboBoxItem Content="Test1">
<c:CommandBehaviorCollection.Behaviors>
<c:BehaviorBinding Event="SelectionChanged"
Command="{Binding SelectedChanged}"
CommandParameter="MainBorder123"/>
</c:CommandBehaviorCollection.Behaviors>
</ComboBoxItem>
<ComboBoxItem Content="Test2"/>
<ComboBoxItem Content="Test3"/>
</ComboBox>