c# - What the name of type of this Menu -


can tell me name of style of menu? (the menu facebook app in windows phone - not slide left menu).

i try search "slide menu" can't find examples this.

in windows phone type of control doesn't exist, can create quickly!

just add grid(the container of sections' icons) , empty pivot control below. in case added pivot , pivotitems in code behind, each section user control. if plan add pivot , pivotitems in xaml, need modify pivot's header template make empty (see here how: how change pivot header template in windows phone 8)

then register selectionchanged event of pivot control , modify appearance of grid above accordingly current selecteditem.

so when user swipe, selectionchanged fired, inside event handler selecteditem/selectedindex , highlight right icon in icons' grid.

if isn't clear feel free ask, maybe can provide example


Comments