I'm having the following XAML code on WP7:
<toolkit:ListPicker x:Name="ListPickerBwFactors" ItemsSource="{Binding BwFactors}"
cal:Message.Attach="[Event SelectionChanged]=[Action ChangeBinarizeFactor(ListPickerBwFactors.ItemSelected)]">
</toolkit:ListPicker>
I'm getting the error:Target must be a FrameworkElement or a CollectionViewSource
All I want to do is to pass to my VM, the SelectedItem from ListPicker. What am I doing wrong ?