Listbox IsSynchronizedWithCurrentItem causes selection of the first item even though nothing its telling it to do it
问题 I came across something that maybe a bug in wpf listbox. Please see the code and then I explain what happens Window <Window > <Grid> <local:MultiSelectionComboBox Width="200" MinHeight="25" HorizontalAlignment="Center" VerticalAlignment="Center" ASLDisplayMemberPath="FirstName" ASLSelectedItems="{Binding SelectedModels}" ItemsSource="{Binding Models}" /> <ListBox HorizontalAlignment="Right" VerticalAlignment="Top" DisplayMemberPath="FirstName" ItemsSource="{Binding SelectedModels}" /> </Grid>