I’m wondering if there is a Wpf control or example that mimics the iphone navigation in its vertical menu. (ex. http://davidcann.com/iphone/). The part that actually interests me is the horizontal scrolling of a new menu once an option is selected in the parent menu.
I’m open for suggestions.
Sounds like a fun project to work on! I do not know of an existing WPF control.
Did you want to mimic the menu’s inertia when you flick? If not, it seems like you could just use a listbox where the listitem is just your text + the image in a grid. When you click the listitem, then start a storyboard animation to make another listbox translate to the left. I sort of simulated a really simplistic version without any clipping here, in Blend:
My apologies in advance if this isn’t what you’re really looking for.