views:

58

answers:

1

What are the alternatives to Grid for displaying repeating data in WPF?

For example, how would I show customers as a list of business cards?

+4  A: 

You could use a ListView and use a customized DataTemplate that shows each customer in some business-card like format. Here's a nice tutorial that does something similar: WPF Twitter Tutorial.

Tarydon