up vote 48 down vote favorite
6
share [g+] share [fb]

I'm considering either a ListBox or a ListView for a WPF application. It seems either supports data binding and item templates. My application has a simple list of items that I intend to be able to search/sort/filter based on user input. The data binding demo (http://msdn.microsoft.com/en-us/library/ms771319.aspx) uses a ListBox with a CollectionViewSource.

Does anyone have pros/cons for which control to use and when?

link|improve this question

feedback

2 Answers

up vote 61 down vote accepted

A ListView is a specialize ListBox (that is, it inherits from ListBox). It allows you to specify different views rather than a straight list. You can either roll your own view, or use GridView (think explorer-like "details view"). It's basically the multi-column listbox, the cousin of windows form's listview.

If you don't need the additional capabilities of ListView, you can certainly use ListBox if you're simply showing a list of items (Even if the template is complex).

link|improve this answer
Thanks for this simple and complete answer! – heltonbiker Jul 29 '11 at 19:23
feedback

A DataGrid has a lot of capabilities, but can be slow if you have more than 50 items, causing an freeze when drawing the DataGrid, especially if it is not virtualizing.

The DataGrid also plays nicely if you need to have a details view of the Record in addition to the list.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.