Reputation: 1574
I am New To windows 8 App Development. I am creating one Windows Tablet Application in Visual studio express 2012 for windows 8. Is it possible to run this app to tablet because i am developing application in visual studio 2012 for windows 8??? I want to add Tab Control to my app like Windows Phone 7 & 8 supports pivot control like i have attached one image here. i want to add same controls in my app as image shown. one tab control and into each tab there is another tab control. how can i add it to my app?? please help me
Upvotes: 0
Views: 1081
Reputation: 31724
I'd recommend switching to Visual Studio Express 2013. 2012 should work for 8.0 though. There is no tab control in WinRT XAML. There is a grouped GridView
or Hub
control that serves similar purposes though. If you'd rather go with the more classic Zune Software-like tabbed interface - you should put a bunch of restyled RadioButtons
in a horizontally oriented StackPanel
like here and a few overlaid Grids
underneath, then switch visibility of these panels based on the checked RadioButton
.
Upvotes: 1