On windows phone 8/8.1, in settings->ringtones+sounds what control us used for the ringtones and reminders options. The control displays a list of items on a dedicated page with a header "chose an item"
Asked
Active
Viewed 50 times
-2
-
I need this for my app development. Can't find the control – waletoye Nov 14 '14 at 08:23
1 Answers
1
Looks like <ListPicker>
from the Windows Phone Toolkit (You can get it my using NuGet)
The Windows Phone Toolkit Website
Sample Usage (notice the separate templates for fullscreen mode)
<toolkit:ListPicker>
<!-- normal template -->
<toolkit:ListPicker.ItemTemplate>
<DataTemplate>
</DataTemplate>
</toolkit:ListPicker.ItemTemplate>
<!-- full screen template -->
<toolkit:ListPicker.FullModeItemTemplate>
<DataTemplate>
</DataTemplate>
</toolkit:ListPicker.FullModeItemTemplate>
</toolkit:ListPicker>

Chubosaurus Software
- 8,133
- 2
- 20
- 26