When I was coding for Windows Phone Silverlight 8.1 I used a LongListSelector to create a jump-list menu that looked a little like this:
Jump-list in Windows Phone 8.1
However, I have since started to code Windows Universal Platform apps instead for Windows 10 and since upgrading my phone from 8.1 to 10, I see that these menus now look like this:
I'm wondering how I can create this using C# in a Windows Universal Platform app. I have over 100 items which the user can select from and this is a really nice way of quickly finding an item to select.
The feature you described is now built-in SemanticZoom control. This article will help you implement it with code sample.