-2

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"

waletoye
  • 364
  • 2
  • 9

1 Answers1

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