I've managed to get the LongListSelector running through MVVM. In other words the ItemSource is set through a property on my viewmodel.

But for some weird reason, I can't seem to be able to 'bind' the SelectedItem of the LongListSelector... I'm not getting in the Set nor Get of the ViewModel property. How is this done? And what should the 'type' of the SelectedItem on the ViewModel be? I thought the Type of the Class inside the Group?

My current xaml:

<silverlighttoolkit:LongListSelector x:Name="AlbumsList"
                                        Background="Transparent"
                                        ItemTemplate="{StaticResource ItemTemplate}"
                                        GroupHeaderTemplate="{StaticResource GroupHeaderTemplate}"
                                        GroupItemTemplate="{StaticResource GroupItemTemplate}"
                                        ItemsSource="{Binding GroupedAlbums}"
                                        SelectedItem="{Binding SelectedAlbum, Mode=TwoWay}">
    <silverlighttoolkit:LongListSelector.GroupItemsPanel>
        <ItemsPanelTemplate>
            <silverlighttoolkit:WrapPanel />
        </ItemsPanelTemplate>
    </silverlighttoolkit:LongListSelector.GroupItemsPanel>
</silverlighttoolkit:LongListSelector>
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Use the SelectionChanged event. Either though a EventToCommand behaviour, or a attached behaviour like this: LongListSelectorExtension

For the latter, you can then use

<toolkit:LongListSelector ext:LongListSelectorExtension.Command="{Binding SelectionChanged}" /> 

where SelectionChanged is a ICommand taking the Selected Item in as the object parameter for Execute.

link|improve this answer
As always Claus you always seem to know the correct answer ;) – Depechie Oct 19 '11 at 18:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.