Reputation: 71
How to add items in Listpicker in WP7? using XAML. In simple way.
Upvotes: 0
Views: 3092
Reputation: 109289
<toolkit:ListPicker>
<toolkit:ListPickerItem Content="One"/>
<toolkit:ListPickerItem Content="Two"/>
<toolkit:ListPickerItem Content="Three"/>
</toolkit:ListPicker>
You can also customize the ItemTemplate
to control the appearance of the content. Here's an article that explains how to do this.
Upvotes: 5