James
James

Reputation: 167

ListView in Windows Phone 8 apps

I have a Windows Runtime application on the Windows 8 Store and would like to use some similar features in my new (and first) Windows Phone 8 phone app.

Is there a ListView native to Windows Phone 8? Or can we use a ListView in a Windows Phone 8 app? I could not find one in the Toolbox.

If there is no ListView, is it possible to have some kind of a list, that allows for Horizontal orientation (meaning, all list items are presented horizontally - not Top-Down)?

And what about a FlipView control? Can we use the Windows 8 Metro FlipView control in a Windows Phone app?

Upvotes: 4

Views: 13252

Answers (1)

Ahmed Emad
Ahmed Emad

Reputation: 560

you can review this link for difference in Xaml Controls between Windows 8 and Windows Phone 8:

XAML controls comparison between Windows Phone 8 and Windows 8

you will find that there is no ListView Or FlipView in Windows Phone 8 . may be you can use insteas LongListSelector

Upvotes: 8

Related Questions