You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The collection filled by the MultiSelectorHelper is not sync ; but one step behind when using the associated event. seems that client receive the mscb_Example_SelectionChanged event before the helper.
Describe the bug
The collection filled by the MultiSelectorHelper is not sync ; but one step behind when using the associated event. seems that client receive the mscb_Example_SelectionChanged event before the helper.
<mah:MultiSelectionComboBox x:Name="mscb_Example"
....
mah:MultiSelectorHelper.SelectedItems="{Binding SelectedAnimals}"
Steps to reproduce
in the sample application, place a breakpoint here, and check the SelectedAnimals collection - it is allways one counter behind
private void mscb_Example_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
foreach (var item in e.AddedItems)
Expected behavior
the problem is that i whant to use the selection changed event to refresh filters...but the collection is not uptodate
Environment
The text was updated successfully, but these errors were encountered: