I have a question around MultiselectItem control for the Windows Phone Toolkit, I have exposed a SQL server 2008 R2 throw WCF and I want to bind this information to the MultiselectItem control. What I did so far is this:-
<toolkit:MultiselectList Name="multiSelectionList">
<toolkit:MultiselectList.ItemTemplate>
<DataTemplate>
<toolkit:MultiselectItem Content="{Binding Name}" />
</DataTemplate>
</toolkit:MultiselectList.ItemTemplate>
</toolkit:MultiselectList>
So far nothing is showing when I am trying to test it using the Windows Phone emulator, by which it I assume something wrong with the xaml code (I did test the WCF service and it is working).
Please advise me, thanks.