Binding selected items in nested ListBox with SelectionMode=“Multiple” and BindableSelection extension
问题 I'm developing a Windows Phone 8.1 app with MVVM pattern (I'm using Prism as a framework) The goal is to get the selected items in a few lists, like that: I have following XAML: <ListView x:Name="abc" ItemsSource="{Binding Symbols}"> <ListView.ItemTemplate> <DataTemplate> <StackPanel> <ListBox SelectionMode="Multiple" ItemsSource="{Binding List}" Extensions:ListViewExtensions.BindableSelection="{Binding SelectedItems, ElementName=abc, Mode=TwoWay}"> ... and in the ViewModel: public List