Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the wp7 pivot control equivalent in windows 8?

i am looking for the wp7 pivot control equivalent for a win 8 app.. for xaml based c# implementation of certain tabbed sections of data.. please let me know if it is available..

if not, what other controls come close to it?

Same question asked here someone before. But no good response yet

EDIT: In Microsoft music player in win 8 consumer preview , you can see a tabbed view .That is exactly what I want. I don't want to use Fly out control for this.

like image 993
Null Pointer Avatar asked Apr 04 '12 09:04

Null Pointer


2 Answers

I've implemented a pivot control in my library. See https://github.com/MyToolkit/MyToolkit/wiki/MtPivot

enter image description here

like image 72
Rico Suter Avatar answered Oct 19 '22 06:10

Rico Suter


I assume you are talking about the "Cloud" "Downloaded" tab switch in Kindle App and the "DOW" "S&P500" "NASDAQ" tab switch in Finance App.

I don't think there is any controls like that. In my own experience, I use a div to pretend to be a tab and update the main view (in my case, GridLayout) when I switch "tab". I don't think FlipView is what you want either because they are essentially not tab.

If you still keep the old Developer Preview samples, you can find the source code of the Conference App (i.e. the /Build// App). Their "schedule" page has similar "tab" control too. But I looked into the source code once and couldn't find anything useful (that was a few month ago). So good luck with that. :P

It is hard to believe that they don't have a "tab" control, but I couldn't find anything like "tab" in their Control List. Especially when they had Pivot Control in WP7.

like image 38
louis.luo Avatar answered Oct 19 '22 04:10

louis.luo