Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Store App: Should I use ListBox or ListView?

I have a question about Windows Store Apps:

what is the difference between the:

  • ListBox
  • ListView

i want to have a list with different TextBlocks

like image 227
gurehbgui Avatar asked Nov 07 '12 19:11

gurehbgui


1 Answers

The more Windows-8 App style control is the ListView. It has built-in functionality for things like scrolling. The ListBox does basically the same things except it doesn't have the nice scrolling functionality.

See here for a more in-depth treatment.

like image 173
N_A Avatar answered Nov 17 '22 04:11

N_A