Reputation: 3
I am trying to find on internet how can I using dropdown menu on Windows Phone 8 but I can not find illustrative something. How can I using dropdown menu on WP8.
Thanks in advance.
(sorry my language)
Upvotes: 0
Views: 2857
Reputation: 1560
you can fill data as:
<toolkit:ListPicker>
<toolkit:ListPickerItem Content="{Binding LocalizedResources.woman, Source={StaticResource LocalizedStrings}}"/>
<toolkit:ListPickerItem Content="{Binding LocalizedResources.man, Source={StaticResource LocalizedStrings}}"/>
<toolkit:ListPickerItem Content="{Binding LocalizedResources.other, Source={StaticResource LocalizedStrings}}"/>
</toolkit:ListPicker>
Also you can do this by using binding and data template.
Upvotes: 2
Reputation: 2060
See the ListPicker
control from the Windows Phone Toolkit. You can find samples in there.
Upvotes: 1