i'm currently creating a Metro Style Application and want to use the FlipView control to work like the tab control in WPF and winforms, please can any one help me ?
You would put FlipViewItems
in the FlipView
the same way you'd put TabItems
in a TabControl
. To add tabs - you could have a StackPanel
with TextRadioButtonStyled
RadioButtons
that have their check states synchronized with the FlipView
selection state. Alternatively you could have a heavily styled ListView
for the headers bar.